@@ -24,7 +25,7 @@ export const ImageWithText = ({backgroundColor, title, image, text, link}: Image
-
+
diff --git a/src/fetch/events.ts b/src/fetch/events.ts
index 33c39de..40ebb7d 100644
--- a/src/fetch/events.ts
+++ b/src/fetch/events.ts
@@ -43,7 +43,8 @@ export async function fetchEvents(parishId: string | undefined, groupId?: string
select: {
location: true,
date: true,
- title: true
+ title: true,
+ cancelled: true
}
},
{ addQueryPrefix: true },
diff --git a/src/pageComponents/Home/Home.stories.tsx b/src/pageComponents/Home/Home.stories.tsx
index cb4987d..969945a 100644
--- a/src/pageComponents/Home/Home.stories.tsx
+++ b/src/pageComponents/Home/Home.stories.tsx
@@ -1,198 +1,136 @@
import { Meta, StoryObj } from '@storybook/react'
import { Home } from './Home'
-import { Menu } from '@/components/Menu/Menu'
-import { Footer } from '@/compositions/Footer/Footer'
const meta: Meta = {
component: Home,
- decorators: [
- (Story) => (
- <>
-
-
-
- >
- )
- ]
}
type Story = StoryObj;
export default meta
export const Default: Story = {
- args: {},
+ args: {
+ schema: 'base',
+ events: [
+ {
+ id: '1',
+ title: 'Event 1',
+ date: '2024-12-02T09:21:24Z',
+ location: 'St. Richard',
+ shortDescription: '',
+ description: {
+ root: {
+ type: '',
+ children: [],
+ direction: null,
+ format: '',
+ indent: 0,
+ version: 0,
+ },
+ },
+ cancelled: false,
+ updatedAt: '2024-12-02T09:21:24Z',
+ createdAt: '2024-12-02T09:21:24Z',
+ },
+ {
+ id: '2',
+ title: 'Event 2',
+ date: '2024-12-05T09:21:24Z',
+ location: 'St. Clara',
+ shortDescription: '',
+ description: {
+ root: {
+ type: '',
+ children: [],
+ direction: null,
+ format: '',
+ indent: 0,
+ version: 0,
+ },
+ },
+ cancelled: false,
+ updatedAt: '2024-12-02T09:21:24Z',
+ createdAt: '2024-12-02T09:21:24Z',
+ },
+ {
+ id: '2',
+ title: 'Event 2',
+ date: '2024-12-08T09:21:24Z',
+ location: 'St. Hedwig',
+ shortDescription: '',
+ description: {
+ root: {
+ type: '',
+ children: [],
+ direction: null,
+ format: '',
+ indent: 0,
+ version: 0,
+ },
+ },
+ cancelled: true,
+ updatedAt: '2024-12-02T09:21:24Z',
+ createdAt: '2024-12-02T09:21:24Z',
+ },
+ ],
+ blog: [
+ {
+ id: 'b1',
+ title: 'Blog 1',
+ excerpt: '',
+ content: [],
+ updatedAt: '',
+ createdAt: '',
+ },
+ {
+ id: 'b2',
+ title: 'Blog 2',
+ excerpt: '',
+ content: [],
+ updatedAt: '',
+ createdAt: '',
+ },
+ {
+ id: 'b3',
+ title: 'Blog 3',
+ excerpt: '',
+ content: [],
+ updatedAt: '',
+ createdAt: '',
+ },
+ ],
+ worship: [
+ {
+ id: 'w1',
+ date: '2024-12-02T09:21:24Z',
+ location: {
+ id: 'c1',
+ name: 'St Richard',
+ address: '',
+ createdAt: '',
+ updatedAt: ''
+ },
+ type: 'MASS',
+ cancelled: false,
+ updatedAt: '',
+ createdAt: '',
+ },
+ {
+ id: 'w1',
+ date: '2024-12-07T10:00:24Z',
+ location: {
+ id: 'c1',
+ name: 'St Richard',
+ address: '',
+ createdAt: '',
+ updatedAt: ''
+ },
+ type: 'MASS',
+ cancelled: false,
+ updatedAt: '',
+ createdAt: '',
+ },
+ ],
+ highlights: [],
+ },
}
\ No newline at end of file
diff --git a/src/pageComponents/Home/Home.tsx b/src/pageComponents/Home/Home.tsx
index e2cbdfe..92d0e00 100644
--- a/src/pageComponents/Home/Home.tsx
+++ b/src/pageComponents/Home/Home.tsx
@@ -1,70 +1,156 @@
+import { Blog, Worship, Event, Highlight } from '@/payload-types'
import { Banner } from '@/components/Banner/Banner'
import { Container } from '@/components/Container/Container'
import { Section } from '@/components/Section/Section'
import { MainText } from '@/components/MainText/MainText'
+import { HR } from '@/components/HorizontalRule/HorizontalRule'
import { Title } from '@/components/Title/Title'
+import { MassRow } from '@/components/MassTable/MassRow'
+import { MassTable } from '@/components/MassTable/MassTable'
import { ImageCardSlider } from '@/compositions/ImageCardSlider/ImageCardSlider'
-import monst from '@/app/mons.jpg'
-import candle from '@/app/candle.png'
-import bread from '@/app/bread.jpg'
-import forest from "../../assets/forest.jpeg"
-import { ContentWithSlider } from '@/compositions/ContentWithSlider/ContentWithSlider'
-import { ContactSection } from '@/compositions/ContactSection/ContactSection'
+import { blogToSlides } from '@/utils/dto/blog'
import { ImageWithText } from '@/compositions/ImageWithText/ImageWithText'
+import forest from '@/assets/forest.jpeg'
+import { ContentWithSlider } from '@/compositions/ContentWithSlider/ContentWithSlider'
+import { EventRow } from '@/components/EventRow/EventRow'
+import { highlightLink } from '@/utils/dto/highlight'
+import { Events } from '@/compositions/Events/Events'
+import { transformEvents } from '@/utils/dto/events'
+import { ContactSection } from '@/compositions/ContactSection/ContactSection'
+
+type HomeProps = {
+ schema: 'base' | 'contrast',
+ events: Event[],
+ worship: Worship[],
+ blog: Blog[],
+ highlights: Highlight[],
+}
+
+const sortWorship = (worship: Worship[]) => {
+ const map = new Map()
+
+ worship.map(w => {
+ if (typeof w.location === 'object') {
+ const title = w.location.name
+
+ if (map.has(title)) {
+ map.get(title)?.push(w)
+ } else {
+ map.set(title, [w])
+ }
+ }
+ })
+
+ return map
+}
+
+
+export const Home = ({
+ schema,
+ events,
+ worship,
+ blog,
+ highlights
+}: HomeProps) => {
+ const worshipPerLocation = Array.from(
+ sortWorship(worship).entries(),
+ ).sort(
+ (a, b) => {
+ const nameA = a[0]
+ const nameB = b[0]
+
+ if (nameA < nameB) {
+ return -1
+ }
+ if (nameA > nameB) {
+ return 1
+ }
+
+ // names must be equal
+ return 0
+ },
+ )
-export const Home = () => {
return (
<>
-
+
-
-
-
-
- >}>
-
-
-
+
+
+
+
+
+
+
+
+ {worshipPerLocation.map(value => )}
+
-
+
+
+
+
+ {blog && blog.length > 0 &&
+
+ }
+
+
+ {}
+
+
+
+ {highlights.map(highlight => (
+
+ ))}
+ >}>
+
-
-
>
+
)
-}
\ No newline at end of file
+}
+
+export default Home;
\ No newline at end of file
diff --git a/src/pageComponents/Parish/Parish.stories.tsx b/src/pageComponents/Parish/Parish.stories.tsx
index 2965a19..6e09f6b 100644
--- a/src/pageComponents/Parish/Parish.stories.tsx
+++ b/src/pageComponents/Parish/Parish.stories.tsx
@@ -198,6 +198,8 @@ export const Default: Story = {
args: {
title: "St. Christophorus",
image: chris,
+ events: [],
+ worship: [],
description: "Die St. Christophorus Kirche in Berlin-Neukölln ist ein bedeutendes Beispiel für modernen Kirchenbau in der Hauptstadt. Erbaut in den 1960er Jahren, spiegelt das Gebäude die Architektur und künstlerische Gestaltung dieser Zeit wider und zeichnet sich durch schlichte, klare Linien und einen funktionalen Stil aus. Die Kirche ist nach dem heiligen Christophorus benannt, dem Schutzpatron der Reisenden, und bietet den Gemeindemitgliedern und Besuchern einen Ort der Ruhe und Besinnung im lebhaften Stadtteil Neukölln. Neben Gottesdiensten finden hier regelmäßig kulturelle Veranstaltungen und soziale Projekte statt, die die Kirche zu einem wichtigen Treffpunkt im Kiez machen.",
history: `Am 27.Juni 1929 erschien folgende Niederschrift in der Märkischen Volkszeitung, die eine berechtigte Freude über die Nachricht von dem Bau der neuen Kirche am Reuterplatz auslöste:
@@ -235,5 +237,5 @@ pfarramt@christophorus-berlin.de
Bürozeiten:
Freitags 09:00 - 12:00 Uhr `
- }
+ },
};
\ No newline at end of file
diff --git a/src/payload-types.ts b/src/payload-types.ts
index 91afe3f..e6c8de5 100644
--- a/src/payload-types.ts
+++ b/src/payload-types.ts
@@ -58,9 +58,9 @@ export interface Config {
user: User & {
collection: 'users';
};
- jobs?: {
+ jobs: {
tasks: unknown;
- workflows?: unknown;
+ workflows: unknown;
};
}
export interface UserAuthOperations {
diff --git a/yarn.lock b/yarn.lock
index a3c54b9..ca6c469 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -115,6 +115,17 @@ __metadata:
languageName: node
linkType: hard
+"@aws-crypto/util@npm:5.2.0, @aws-crypto/util@npm:^5.2.0":
+ version: 5.2.0
+ resolution: "@aws-crypto/util@npm:5.2.0"
+ dependencies:
+ "@aws-sdk/types": "npm:^3.222.0"
+ "@smithy/util-utf8": "npm:^2.0.0"
+ tslib: "npm:^2.6.2"
+ checksum: 10c0/0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951
+ languageName: node
+ linkType: hard
+
"@aws-crypto/util@npm:^1.2.2":
version: 1.2.2
resolution: "@aws-crypto/util@npm:1.2.2"
@@ -126,638 +137,652 @@ __metadata:
languageName: node
linkType: hard
-"@aws-crypto/util@npm:^5.2.0":
- version: 5.2.0
- resolution: "@aws-crypto/util@npm:5.2.0"
- dependencies:
- "@aws-sdk/types": "npm:^3.222.0"
- "@smithy/util-utf8": "npm:^2.0.0"
- tslib: "npm:^2.6.2"
- checksum: 10c0/0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951
- languageName: node
- linkType: hard
-
-"@aws-sdk/client-cognito-identity@npm:3.645.0, @aws-sdk/client-cognito-identity@npm:^3.614.0":
- version: 3.645.0
- resolution: "@aws-sdk/client-cognito-identity@npm:3.645.0"
+"@aws-sdk/client-cognito-identity@npm:3.699.0, @aws-sdk/client-cognito-identity@npm:^3.289.0":
+ version: 3.699.0
+ resolution: "@aws-sdk/client-cognito-identity@npm:3.699.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.645.0"
- "@aws-sdk/client-sts": "npm:3.645.0"
- "@aws-sdk/core": "npm:3.635.0"
- "@aws-sdk/credential-provider-node": "npm:3.645.0"
- "@aws-sdk/middleware-host-header": "npm:3.620.0"
- "@aws-sdk/middleware-logger": "npm:3.609.0"
- "@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
- "@aws-sdk/middleware-user-agent": "npm:3.645.0"
- "@aws-sdk/region-config-resolver": "npm:3.614.0"
- "@aws-sdk/types": "npm:3.609.0"
- "@aws-sdk/util-endpoints": "npm:3.645.0"
- "@aws-sdk/util-user-agent-browser": "npm:3.609.0"
- "@aws-sdk/util-user-agent-node": "npm:3.614.0"
- "@smithy/config-resolver": "npm:^3.0.5"
- "@smithy/core": "npm:^2.4.0"
- "@smithy/fetch-http-handler": "npm:^3.2.4"
- "@smithy/hash-node": "npm:^3.0.3"
- "@smithy/invalid-dependency": "npm:^3.0.3"
- "@smithy/middleware-content-length": "npm:^3.0.5"
- "@smithy/middleware-endpoint": "npm:^3.1.0"
- "@smithy/middleware-retry": "npm:^3.0.15"
- "@smithy/middleware-serde": "npm:^3.0.3"
- "@smithy/middleware-stack": "npm:^3.0.3"
- "@smithy/node-config-provider": "npm:^3.1.4"
- "@smithy/node-http-handler": "npm:^3.1.4"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/smithy-client": "npm:^3.2.0"
- "@smithy/types": "npm:^3.3.0"
- "@smithy/url-parser": "npm:^3.0.3"
+ "@aws-sdk/client-sso-oidc": "npm:3.699.0"
+ "@aws-sdk/client-sts": "npm:3.699.0"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/credential-provider-node": "npm:3.699.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.15"
- "@smithy/util-defaults-mode-node": "npm:^3.0.15"
- "@smithy/util-endpoints": "npm:^2.0.5"
- "@smithy/util-middleware": "npm:^3.0.3"
- "@smithy/util-retry": "npm:^3.0.3"
+ "@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/c1cc5f96e5579b31b621ef362c10333603381b3c624ab757dcc2369187462220d921993a66ee20287b844852faecbccfcd2154a02de5f0968a0e0fad646dcd7c
+ checksum: 10c0/aff35ec47c694407cd64737c78ee8b8d7027ff7fc3127309db541d3eb9bab71ad4b49a05f4bf38491e2febca4b8132678872e9f0557155d06a4b26a1bc1734c8
languageName: node
linkType: hard
-"@aws-sdk/client-s3@npm:^3.614.0":
- version: 3.645.0
- resolution: "@aws-sdk/client-s3@npm:3.645.0"
+"@aws-sdk/client-s3@npm:^3.142.0":
+ version: 3.701.0
+ resolution: "@aws-sdk/client-s3@npm:3.701.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.645.0"
- "@aws-sdk/client-sts": "npm:3.645.0"
- "@aws-sdk/core": "npm:3.635.0"
- "@aws-sdk/credential-provider-node": "npm:3.645.0"
- "@aws-sdk/middleware-bucket-endpoint": "npm:3.620.0"
- "@aws-sdk/middleware-expect-continue": "npm:3.620.0"
- "@aws-sdk/middleware-flexible-checksums": "npm:3.620.0"
- "@aws-sdk/middleware-host-header": "npm:3.620.0"
- "@aws-sdk/middleware-location-constraint": "npm:3.609.0"
- "@aws-sdk/middleware-logger": "npm:3.609.0"
- "@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
- "@aws-sdk/middleware-sdk-s3": "npm:3.635.0"
- "@aws-sdk/middleware-ssec": "npm:3.609.0"
- "@aws-sdk/middleware-user-agent": "npm:3.645.0"
- "@aws-sdk/region-config-resolver": "npm:3.614.0"
- "@aws-sdk/signature-v4-multi-region": "npm:3.635.0"
- "@aws-sdk/types": "npm:3.609.0"
- "@aws-sdk/util-endpoints": "npm:3.645.0"
- "@aws-sdk/util-user-agent-browser": "npm:3.609.0"
- "@aws-sdk/util-user-agent-node": "npm:3.614.0"
- "@aws-sdk/xml-builder": "npm:3.609.0"
- "@smithy/config-resolver": "npm:^3.0.5"
- "@smithy/core": "npm:^2.4.0"
- "@smithy/eventstream-serde-browser": "npm:^3.0.6"
- "@smithy/eventstream-serde-config-resolver": "npm:^3.0.3"
- "@smithy/eventstream-serde-node": "npm:^3.0.5"
- "@smithy/fetch-http-handler": "npm:^3.2.4"
- "@smithy/hash-blob-browser": "npm:^3.1.2"
- "@smithy/hash-node": "npm:^3.0.3"
- "@smithy/hash-stream-node": "npm:^3.1.2"
- "@smithy/invalid-dependency": "npm:^3.0.3"
- "@smithy/md5-js": "npm:^3.0.3"
- "@smithy/middleware-content-length": "npm:^3.0.5"
- "@smithy/middleware-endpoint": "npm:^3.1.0"
- "@smithy/middleware-retry": "npm:^3.0.15"
- "@smithy/middleware-serde": "npm:^3.0.3"
- "@smithy/middleware-stack": "npm:^3.0.3"
- "@smithy/node-config-provider": "npm:^3.1.4"
- "@smithy/node-http-handler": "npm:^3.1.4"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/smithy-client": "npm:^3.2.0"
- "@smithy/types": "npm:^3.3.0"
- "@smithy/url-parser": "npm:^3.0.3"
+ "@aws-sdk/client-sso-oidc": "npm:3.699.0"
+ "@aws-sdk/client-sts": "npm:3.699.0"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/credential-provider-node": "npm:3.699.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.701.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.15"
- "@smithy/util-defaults-mode-node": "npm:^3.0.15"
- "@smithy/util-endpoints": "npm:^2.0.5"
- "@smithy/util-middleware": "npm:^3.0.3"
- "@smithy/util-retry": "npm:^3.0.3"
- "@smithy/util-stream": "npm:^3.1.3"
+ "@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.2"
+ "@smithy/util-waiter": "npm:^3.1.9"
tslib: "npm:^2.6.2"
- checksum: 10c0/c39f504c6cb1c96325460ca780fc065f3b08170b2ca96fac6af62ddcf18a6fba5c7a88f0ab18290e6ea16db5725a6fab482479774c7934d002e9f008ecaec27c
+ checksum: 10c0/b7eeb84dddb1c5581de6210ecdfd943a1f94582d30bf58e7ce2ff7ecdbfee68edf01838c0f78f015ebfb134f60cb27d6827f85b78ad8b90cb6516a072425987f
languageName: node
linkType: hard
-"@aws-sdk/client-sso-oidc@npm:3.645.0":
- version: 3.645.0
- resolution: "@aws-sdk/client-sso-oidc@npm:3.645.0"
+"@aws-sdk/client-sso-oidc@npm:3.699.0":
+ version: 3.699.0
+ resolution: "@aws-sdk/client-sso-oidc@npm:3.699.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
- "@aws-sdk/core": "npm:3.635.0"
- "@aws-sdk/credential-provider-node": "npm:3.645.0"
- "@aws-sdk/middleware-host-header": "npm:3.620.0"
- "@aws-sdk/middleware-logger": "npm:3.609.0"
- "@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
- "@aws-sdk/middleware-user-agent": "npm:3.645.0"
- "@aws-sdk/region-config-resolver": "npm:3.614.0"
- "@aws-sdk/types": "npm:3.609.0"
- "@aws-sdk/util-endpoints": "npm:3.645.0"
- "@aws-sdk/util-user-agent-browser": "npm:3.609.0"
- "@aws-sdk/util-user-agent-node": "npm:3.614.0"
- "@smithy/config-resolver": "npm:^3.0.5"
- "@smithy/core": "npm:^2.4.0"
- "@smithy/fetch-http-handler": "npm:^3.2.4"
- "@smithy/hash-node": "npm:^3.0.3"
- "@smithy/invalid-dependency": "npm:^3.0.3"
- "@smithy/middleware-content-length": "npm:^3.0.5"
- "@smithy/middleware-endpoint": "npm:^3.1.0"
- "@smithy/middleware-retry": "npm:^3.0.15"
- "@smithy/middleware-serde": "npm:^3.0.3"
- "@smithy/middleware-stack": "npm:^3.0.3"
- "@smithy/node-config-provider": "npm:^3.1.4"
- "@smithy/node-http-handler": "npm:^3.1.4"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/smithy-client": "npm:^3.2.0"
- "@smithy/types": "npm:^3.3.0"
- "@smithy/url-parser": "npm:^3.0.3"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/credential-provider-node": "npm:3.699.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.15"
- "@smithy/util-defaults-mode-node": "npm:^3.0.15"
- "@smithy/util-endpoints": "npm:^2.0.5"
- "@smithy/util-middleware": "npm:^3.0.3"
- "@smithy/util-retry": "npm:^3.0.3"
+ "@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.645.0
- checksum: 10c0/13259e44c526f5473951346fd85fc63014cfb8edf02c21c3280d1551a7cc8fa858d80458f1704115aadf90e6d43e36dea18bfbd7d868c68bdbc0b65f9b965b40
+ "@aws-sdk/client-sts": ^3.699.0
+ checksum: 10c0/b4d277fe4a7af3934b7528e8379901ae56ab9b9d3b6ed019d0a89f22ce2f8430edbe77ef1ced413216b378e517e32a625f3c4a4e8d6ef2bc58baefb6bc5e96d9
languageName: node
linkType: hard
-"@aws-sdk/client-sso@npm:3.645.0":
- version: 3.645.0
- resolution: "@aws-sdk/client-sso@npm:3.645.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.635.0"
- "@aws-sdk/middleware-host-header": "npm:3.620.0"
- "@aws-sdk/middleware-logger": "npm:3.609.0"
- "@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
- "@aws-sdk/middleware-user-agent": "npm:3.645.0"
- "@aws-sdk/region-config-resolver": "npm:3.614.0"
- "@aws-sdk/types": "npm:3.609.0"
- "@aws-sdk/util-endpoints": "npm:3.645.0"
- "@aws-sdk/util-user-agent-browser": "npm:3.609.0"
- "@aws-sdk/util-user-agent-node": "npm:3.614.0"
- "@smithy/config-resolver": "npm:^3.0.5"
- "@smithy/core": "npm:^2.4.0"
- "@smithy/fetch-http-handler": "npm:^3.2.4"
- "@smithy/hash-node": "npm:^3.0.3"
- "@smithy/invalid-dependency": "npm:^3.0.3"
- "@smithy/middleware-content-length": "npm:^3.0.5"
- "@smithy/middleware-endpoint": "npm:^3.1.0"
- "@smithy/middleware-retry": "npm:^3.0.15"
- "@smithy/middleware-serde": "npm:^3.0.3"
- "@smithy/middleware-stack": "npm:^3.0.3"
- "@smithy/node-config-provider": "npm:^3.1.4"
- "@smithy/node-http-handler": "npm:^3.1.4"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/smithy-client": "npm:^3.2.0"
- "@smithy/types": "npm:^3.3.0"
- "@smithy/url-parser": "npm:^3.0.3"
+ "@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.15"
- "@smithy/util-defaults-mode-node": "npm:^3.0.15"
- "@smithy/util-endpoints": "npm:^2.0.5"
- "@smithy/util-middleware": "npm:^3.0.3"
- "@smithy/util-retry": "npm:^3.0.3"
+ "@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/dc43f1ef17ecece13d1ac3e8297dc00146b0bba9a8d41a9fa0f53eec6e0a668db9e86c7b82fd9b861fdaccabe33693c89a0fcc898e90ddb2b1f0c3b145b784e4
+ checksum: 10c0/e96c907c3385ea183181eb7dbdceb01c2b96a220f67bf6147b9a116aa197ceb2860fa54667405a7f60f365ee1c056b7039ff1ac236815894b675ee76c52862f3
languageName: node
linkType: hard
-"@aws-sdk/client-sts@npm:3.645.0":
- version: 3.645.0
- resolution: "@aws-sdk/client-sts@npm:3.645.0"
+"@aws-sdk/client-sts@npm:3.699.0":
+ version: 3.699.0
+ resolution: "@aws-sdk/client-sts@npm:3.699.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.645.0"
- "@aws-sdk/core": "npm:3.635.0"
- "@aws-sdk/credential-provider-node": "npm:3.645.0"
- "@aws-sdk/middleware-host-header": "npm:3.620.0"
- "@aws-sdk/middleware-logger": "npm:3.609.0"
- "@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
- "@aws-sdk/middleware-user-agent": "npm:3.645.0"
- "@aws-sdk/region-config-resolver": "npm:3.614.0"
- "@aws-sdk/types": "npm:3.609.0"
- "@aws-sdk/util-endpoints": "npm:3.645.0"
- "@aws-sdk/util-user-agent-browser": "npm:3.609.0"
- "@aws-sdk/util-user-agent-node": "npm:3.614.0"
- "@smithy/config-resolver": "npm:^3.0.5"
- "@smithy/core": "npm:^2.4.0"
- "@smithy/fetch-http-handler": "npm:^3.2.4"
- "@smithy/hash-node": "npm:^3.0.3"
- "@smithy/invalid-dependency": "npm:^3.0.3"
- "@smithy/middleware-content-length": "npm:^3.0.5"
- "@smithy/middleware-endpoint": "npm:^3.1.0"
- "@smithy/middleware-retry": "npm:^3.0.15"
- "@smithy/middleware-serde": "npm:^3.0.3"
- "@smithy/middleware-stack": "npm:^3.0.3"
- "@smithy/node-config-provider": "npm:^3.1.4"
- "@smithy/node-http-handler": "npm:^3.1.4"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/smithy-client": "npm:^3.2.0"
- "@smithy/types": "npm:^3.3.0"
- "@smithy/url-parser": "npm:^3.0.3"
+ "@aws-sdk/client-sso-oidc": "npm:3.699.0"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/credential-provider-node": "npm:3.699.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.15"
- "@smithy/util-defaults-mode-node": "npm:^3.0.15"
- "@smithy/util-endpoints": "npm:^2.0.5"
- "@smithy/util-middleware": "npm:^3.0.3"
- "@smithy/util-retry": "npm:^3.0.3"
+ "@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/3608265f042ff0fa8ce7ea5beb41c8dd4c10c4f3edb77ef8803d5d3cef0e4e0e56815ab2d2da139a7a31f106551822ccc2c5efa6fd798bd937e29d6298a60c8a
+ checksum: 10c0/bdc7bc373fc518570d8d034b6e1af033c2bf272217c79ebe3e1ec3f928c5b73b4b71f6b7d0be9a95db1f909cdcbe8b5a52776f4f2290d63a78bd05ece7d9abe0
languageName: node
linkType: hard
-"@aws-sdk/core@npm:3.635.0":
- version: 3.635.0
- resolution: "@aws-sdk/core@npm:3.635.0"
+"@aws-sdk/core@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/core@npm:3.696.0"
dependencies:
- "@smithy/core": "npm:^2.4.0"
- "@smithy/node-config-provider": "npm:^3.1.4"
- "@smithy/property-provider": "npm:^3.1.3"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/signature-v4": "npm:^4.1.0"
- "@smithy/smithy-client": "npm:^3.2.0"
- "@smithy/types": "npm:^3.3.0"
- "@smithy/util-middleware": "npm:^3.0.3"
+ "@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/6f9a9a7dba32279a4f3970fee52845ef06509ffd414a1405c5d1a81e9b68d39dff8fe17c8f88d0e5516683c33f7a1d2b56432ebd8c540f86abfff782218e6f35
+ checksum: 10c0/4a96a3e29bf6e0dcd82d8160633eb4b8a488d821a8e59c1033c79a8e0d32b2f82e241e1cf94599f48836800549e342a410318b18e055851741ddf7d5d3ad4606
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-cognito-identity@npm:3.645.0":
- version: 3.645.0
- resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.645.0"
+"@aws-sdk/credential-provider-cognito-identity@npm:3.699.0":
+ version: 3.699.0
+ resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.699.0"
dependencies:
- "@aws-sdk/client-cognito-identity": "npm:3.645.0"
- "@aws-sdk/types": "npm:3.609.0"
- "@smithy/property-provider": "npm:^3.1.3"
- "@smithy/types": "npm:^3.3.0"
+ "@aws-sdk/client-cognito-identity": "npm:3.699.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/de5a8b49f1826245e6c0d2a75861ee7f9716f8782be782695f4e68b31a470913f1cdbac0a5ddd54ae83f7554b421527efa8e5d390c7e122927da4073cffdfdf1
+ checksum: 10c0/69f2c13ecc2935a8e7cff65e7ddb1b7e05db6b8295979b05df55b04d8af8d4bf87ddab62cd18aad971f30389ee49ba58e3020b6175a60450bf4b62035056babf
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-env@npm:3.620.1":
- version: 3.620.1
- resolution: "@aws-sdk/credential-provider-env@npm:3.620.1"
+"@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/types": "npm:3.609.0"
- "@smithy/property-provider": "npm:^3.1.3"
- "@smithy/types": "npm:^3.3.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/25156df7c0e9a1423f261276506fc5766c9f43c41e811adaa0f9a6199b03ff4fd299e9dd94fd73942ab99283b30d8e127692ae371c16917f6709f655de401874
+ checksum: 10c0/e16987ca343f9dbae2560d0d016ca005f36b27fb094f8d32b99954d0a2874aa8230f924f2dab2a0e0aebc7ee9eda6881c5f6e928d89dc759f70a7658363e20be
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-http@npm:3.635.0":
- version: 3.635.0
- resolution: "@aws-sdk/credential-provider-http@npm:3.635.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/types": "npm:3.609.0"
- "@smithy/fetch-http-handler": "npm:^3.2.4"
- "@smithy/node-http-handler": "npm:^3.1.4"
- "@smithy/property-provider": "npm:^3.1.3"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/smithy-client": "npm:^3.2.0"
- "@smithy/types": "npm:^3.3.0"
- "@smithy/util-stream": "npm:^3.1.3"
+ "@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/3a232fdece1cbe7e9ec740287702dfaa640392e827d31b5c8a23d59ab9dcf2424408a43a6ef2cf3c94e72ec5612f61651cb7cac92458c5b2c93754f6b7989daf
+ checksum: 10c0/383dd45600b0edbcc52c8e1101485569e631fb218f1776bbd4971e43a54be0adef458cb096d06d944353675136d2043da588424c78fff1c4eeeaf5229eb6774d
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-ini@npm:3.645.0":
- version: 3.645.0
- resolution: "@aws-sdk/credential-provider-ini@npm:3.645.0"
+"@aws-sdk/credential-provider-ini@npm:3.699.0":
+ version: 3.699.0
+ resolution: "@aws-sdk/credential-provider-ini@npm:3.699.0"
dependencies:
- "@aws-sdk/credential-provider-env": "npm:3.620.1"
- "@aws-sdk/credential-provider-http": "npm:3.635.0"
- "@aws-sdk/credential-provider-process": "npm:3.620.1"
- "@aws-sdk/credential-provider-sso": "npm:3.645.0"
- "@aws-sdk/credential-provider-web-identity": "npm:3.621.0"
- "@aws-sdk/types": "npm:3.609.0"
- "@smithy/credential-provider-imds": "npm:^3.2.0"
- "@smithy/property-provider": "npm:^3.1.3"
- "@smithy/shared-ini-file-loader": "npm:^3.1.4"
- "@smithy/types": "npm:^3.3.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.699.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.645.0
- checksum: 10c0/bae6dbf5ea1c97b15493658f163cebcc17c624239f73e4ab6bf8ae0e7de061b16bbd25f87e29c453da64e93eef8eeb3b4563588b9a720f54878c0b38b456d249
+ "@aws-sdk/client-sts": ^3.699.0
+ checksum: 10c0/1efb837da910ce4e8a43574f2fdceb82daecefbb7f3853d7ec97059a80a7193cf579d185d4f4b1ef67cb378db9c5d4d3058a252a75fd6a32caad257c6602765e
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-node@npm:3.645.0":
- version: 3.645.0
- resolution: "@aws-sdk/credential-provider-node@npm:3.645.0"
+"@aws-sdk/credential-provider-node@npm:3.699.0":
+ version: 3.699.0
+ resolution: "@aws-sdk/credential-provider-node@npm:3.699.0"
dependencies:
- "@aws-sdk/credential-provider-env": "npm:3.620.1"
- "@aws-sdk/credential-provider-http": "npm:3.635.0"
- "@aws-sdk/credential-provider-ini": "npm:3.645.0"
- "@aws-sdk/credential-provider-process": "npm:3.620.1"
- "@aws-sdk/credential-provider-sso": "npm:3.645.0"
- "@aws-sdk/credential-provider-web-identity": "npm:3.621.0"
- "@aws-sdk/types": "npm:3.609.0"
- "@smithy/credential-provider-imds": "npm:^3.2.0"
- "@smithy/property-provider": "npm:^3.1.3"
- "@smithy/shared-ini-file-loader": "npm:^3.1.4"
- "@smithy/types": "npm:^3.3.0"
+ "@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.699.0"
+ "@aws-sdk/credential-provider-process": "npm:3.696.0"
+ "@aws-sdk/credential-provider-sso": "npm:3.699.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/17a40c73c594bd42d26fd4cbe6c66964bb8c2e0404f2a160487623fef778fb18b27d8c6104dafee4d0ef69628e14eacc67368ec7774517782b7d21c540678af8
+ checksum: 10c0/d2e690eb839d906409da293af7918ab20210c25428985f019b161b3cbf5deca681d4cc397c7d5a929aeaa0b90be8dbe3282bd5a9b17969c2e6ddb5c08d66e5c4
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-process@npm:3.620.1":
- version: 3.620.1
- resolution: "@aws-sdk/credential-provider-process@npm:3.620.1"
+"@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/types": "npm:3.609.0"
- "@smithy/property-provider": "npm:^3.1.3"
- "@smithy/shared-ini-file-loader": "npm:^3.1.4"
- "@smithy/types": "npm:^3.3.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/d33bf3e5e73f16c8e58dc71a738cdcbcf48b54610e464affc69c73f9bdcc2b287b6cb281c9a719f67298fb0cd795e67201e5d6704dcc24933e71e58653607992
+ checksum: 10c0/61741aa3d9cbbc88ea31bad7b7e8253aa4a0860eef215ff8d9a8196cdaa7ca8fa3bb438500c558abc9ce78b9490c540b12180acee21a7a9276491344931c5279
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-sso@npm:3.645.0":
- version: 3.645.0
- resolution: "@aws-sdk/credential-provider-sso@npm:3.645.0"
+"@aws-sdk/credential-provider-sso@npm:3.699.0":
+ version: 3.699.0
+ resolution: "@aws-sdk/credential-provider-sso@npm:3.699.0"
dependencies:
- "@aws-sdk/client-sso": "npm:3.645.0"
- "@aws-sdk/token-providers": "npm:3.614.0"
- "@aws-sdk/types": "npm:3.609.0"
- "@smithy/property-provider": "npm:^3.1.3"
- "@smithy/shared-ini-file-loader": "npm:^3.1.4"
- "@smithy/types": "npm:^3.3.0"
+ "@aws-sdk/client-sso": "npm:3.696.0"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/token-providers": "npm:3.699.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/ef9137f1b967ea0f4cbfc7f7c6b133e4dd2de2881f0c07a2b0802e2c7c9952ae6aa0b2dc2f112c7ab784fc9b997f24cce948c22cdd0fe1853ae068c60cbe57b3
+ checksum: 10c0/be78a04f971d716b24e4bb9ce5ecec8ed8ffe9fdeebb07d4e6138c1b833529b5260d7381af8460b00f1659eb26018bffa51c9955b24a327374dd79c2fb2ce0ab
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-web-identity@npm:3.621.0":
- version: 3.621.0
- resolution: "@aws-sdk/credential-provider-web-identity@npm:3.621.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/types": "npm:3.609.0"
- "@smithy/property-provider": "npm:^3.1.3"
- "@smithy/types": "npm:^3.3.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.621.0
- checksum: 10c0/c699a60e242cc3895b3536a0a4818560f167b6c0cc3e8858cf75cd0438020a070b2e5c84e59280ee81679d865516dcde5b31cf6af1ee35b0d28c94b68c63f742
+ "@aws-sdk/client-sts": ^3.696.0
+ checksum: 10c0/a983867c72a6c8a1fd397f8051f4b6e64f5cac1ff5afff1b2d00815096d6c819d9ad155f4724cb27ebe3c13714eeb22cc545533f4ccaaa63980308b8bef2fa4c
languageName: node
linkType: hard
-"@aws-sdk/credential-providers@npm:^3.186.0, @aws-sdk/credential-providers@npm:^3.614.0":
- version: 3.645.0
- resolution: "@aws-sdk/credential-providers@npm:3.645.0"
+"@aws-sdk/credential-providers@npm:^3.289.0":
+ version: 3.699.0
+ resolution: "@aws-sdk/credential-providers@npm:3.699.0"
dependencies:
- "@aws-sdk/client-cognito-identity": "npm:3.645.0"
- "@aws-sdk/client-sso": "npm:3.645.0"
- "@aws-sdk/client-sts": "npm:3.645.0"
- "@aws-sdk/credential-provider-cognito-identity": "npm:3.645.0"
- "@aws-sdk/credential-provider-env": "npm:3.620.1"
- "@aws-sdk/credential-provider-http": "npm:3.635.0"
- "@aws-sdk/credential-provider-ini": "npm:3.645.0"
- "@aws-sdk/credential-provider-node": "npm:3.645.0"
- "@aws-sdk/credential-provider-process": "npm:3.620.1"
- "@aws-sdk/credential-provider-sso": "npm:3.645.0"
- "@aws-sdk/credential-provider-web-identity": "npm:3.621.0"
- "@aws-sdk/types": "npm:3.609.0"
- "@smithy/credential-provider-imds": "npm:^3.2.0"
- "@smithy/property-provider": "npm:^3.1.3"
- "@smithy/types": "npm:^3.3.0"
+ "@aws-sdk/client-cognito-identity": "npm:3.699.0"
+ "@aws-sdk/client-sso": "npm:3.696.0"
+ "@aws-sdk/client-sts": "npm:3.699.0"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/credential-provider-cognito-identity": "npm:3.699.0"
+ "@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.699.0"
+ "@aws-sdk/credential-provider-node": "npm:3.699.0"
+ "@aws-sdk/credential-provider-process": "npm:3.696.0"
+ "@aws-sdk/credential-provider-sso": "npm:3.699.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/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/093ab2049abbb234754cab30cc3cc8f767b80c5e9d1ffccd084285a001b9b3fa24d23ca64a15c72a2e9773aad609663fdb128fefddc959c770f2c71dbcfac6a3
+ checksum: 10c0/e8abd7a362ad17d6e8bba35e548664f5d8c3b4ed6583cbb6b95287cae98457f736d9d8f3b5f56fb13a8ea8f126e48d1522afbb3b143e67267889503287a443a5
languageName: node
linkType: hard
-"@aws-sdk/lib-storage@npm:^3.614.0":
- version: 3.645.0
- resolution: "@aws-sdk/lib-storage@npm:3.645.0"
+"@aws-sdk/lib-storage@npm:^3.267.0":
+ version: 3.701.0
+ resolution: "@aws-sdk/lib-storage@npm:3.701.0"
dependencies:
- "@smithy/abort-controller": "npm:^3.1.1"
- "@smithy/middleware-endpoint": "npm:^3.1.0"
- "@smithy/smithy-client": "npm:^3.2.0"
+ "@smithy/abort-controller": "npm:^3.1.7"
+ "@smithy/middleware-endpoint": "npm:^3.2.3"
+ "@smithy/smithy-client": "npm:^3.4.4"
buffer: "npm:5.6.0"
events: "npm:3.3.0"
stream-browserify: "npm:3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
- "@aws-sdk/client-s3": ^3.645.0
- checksum: 10c0/3b65b59e06653c729ed0ae8e6296784e74d4c4aacbd1559f3f49591638d03220045696e2389358667133148ac2992319adeb4941e07e0b168cb14bc63967fac2
+ "@aws-sdk/client-s3": ^3.701.0
+ checksum: 10c0/3fd27a46ceadf7b3bcb9c226e70a2045e93e60641a3cff058397d3bac3d8a013f32c038ef6f4f914ea561f9a13eaf2c4739dd5d3cdb1e020537db095eb10dfb7
languageName: node
linkType: hard
-"@aws-sdk/middleware-bucket-endpoint@npm:3.620.0":
- version: 3.620.0
- resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.620.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.609.0"
- "@aws-sdk/util-arn-parser": "npm:3.568.0"
- "@smithy/node-config-provider": "npm:^3.1.4"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/types": "npm:^3.3.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/5fec190026bac88554a2299d81565bb4f067600336045af5d4ec1e06a1a884386e324922f1de8d8d87954bd8dbdae279bf4e37401aaf8311db5fe70c1c44b483
+ checksum: 10c0/2e8fd34f69466dee6884bd2501ad47b0815583ce92adebc0cd69537a084f56ec34760dcf34979a67faec70980dba3cde6fd6516576cc32b1d9f27e494d3ea62c
languageName: node
linkType: hard
-"@aws-sdk/middleware-expect-continue@npm:3.620.0":
- version: 3.620.0
- resolution: "@aws-sdk/middleware-expect-continue@npm:3.620.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.609.0"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/types": "npm:^3.3.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/1204171772b3f141a19e68ede28b412c5bca68e4f5c493c38f41d278cbbaae0488d95e1161ed5b44aefcfbbb66f795f2aacfb24434d7fdd71695a1a3885c59bb
+ checksum: 10c0/1f91c500d44e2dcbf16434c40e4cf78a3c652b161bf4ccfcda03b94cd8b17d69d0058ee1932b6101643a8a2003487f1cc95e33a5972fe04366e86a3105fdfd24
languageName: node
linkType: hard
-"@aws-sdk/middleware-flexible-checksums@npm:3.620.0":
- version: 3.620.0
- resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.620.0"
+"@aws-sdk/middleware-flexible-checksums@npm:3.701.0":
+ version: 3.701.0
+ resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.701.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
- "@aws-sdk/types": "npm:3.609.0"
+ "@aws-crypto/util": "npm:5.2.0"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/types": "npm:3.696.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/types": "npm:^3.3.0"
+ "@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/b6990776c98a19c57850ad623a61d45946741f75913cd71901d693ff71a840ea6fdbb7811d8849db6d149090bd2b61a6f3c706084a2d2b366c8e55c5f62e3186
+ checksum: 10c0/b56d848f14f2f27c0837aa3f93bfddf51d1dcb06a8aae9a91536bbb14be92f88b27b1a0d5297a95ee91b3cc521202740646b52a229bbe24cca2e089038037547
languageName: node
linkType: hard
-"@aws-sdk/middleware-host-header@npm:3.620.0":
- version: 3.620.0
- resolution: "@aws-sdk/middleware-host-header@npm:3.620.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.609.0"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/types": "npm:^3.3.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/221e8e440fc156bc0ef8d2186bc3b9c18c7874cb275ae714c3c7eeb934b846e1291c3cb9a3631c486a86189a4c446e61c64e8e7d737f209fe63808ad313bd779
+ checksum: 10c0/793c61a6af5533872888d9ee1b6765e06bd9716a9b1e497fb53b39da0bdbde2c379601ddf29bd2120cc520241143bae7763691f476f81721c290ee4e71264b6e
languageName: node
linkType: hard
-"@aws-sdk/middleware-location-constraint@npm:3.609.0":
- version: 3.609.0
- resolution: "@aws-sdk/middleware-location-constraint@npm:3.609.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.609.0"
- "@smithy/types": "npm:^3.3.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/1eba2a3a1a003855a69e56f1c54fb2283b30db50bf14130cd042e25805497b7a19539144052c4fa710952d754d1a9e5d680fce09536509cf796a16816c8d506f
+ checksum: 10c0/300cc6148da5f49ff7ce82987af746a2af6f0bdffb8f31a07fd60d39a24ca797c89874349215f46d59dd2b5ca312ff288a6a1584b95e713c265344129a0b88b7
languageName: node
linkType: hard
-"@aws-sdk/middleware-logger@npm:3.609.0":
- version: 3.609.0
- resolution: "@aws-sdk/middleware-logger@npm:3.609.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.609.0"
- "@smithy/types": "npm:^3.3.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/e8d110552fee03c5290f94be8da8bb6c07404c06c68971cf24c89a5a4e08b93f6039a2bf729b173855815dd13e382eda18c31e098e7a40db9c8163b74a7770e7
+ checksum: 10c0/978145de80cb21a59d525fe9611d78e513df506e29123c39d425dd7c77043f9b57f05f03edde33864d9494a7ce76b7e2a48ec38ee4cee213b470ff1cd11c229f
languageName: node
linkType: hard
-"@aws-sdk/middleware-recursion-detection@npm:3.620.0":
- version: 3.620.0
- resolution: "@aws-sdk/middleware-recursion-detection@npm:3.620.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.609.0"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/types": "npm:^3.3.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/f859a777eb0441e8ec78054b478bb75c2debcf53680deb6731830a62ec2a45a5a9b1462028214c49bbc67acff2ca1a78cb35913f826ccc4118fa45b51220bcd4
+ checksum: 10c0/20db668ef267c62134e241511a6a5a49cbcacbf4eb28eb8fede903086e38bdc3d6d5277f5faae4bb0b3a5123a2f1c116b219c3c48d4b8aa49c12e97707736d51
languageName: node
linkType: hard
-"@aws-sdk/middleware-sdk-s3@npm:3.635.0":
- version: 3.635.0
- resolution: "@aws-sdk/middleware-sdk-s3@npm:3.635.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.635.0"
- "@aws-sdk/types": "npm:3.609.0"
- "@aws-sdk/util-arn-parser": "npm:3.568.0"
- "@smithy/core": "npm:^2.4.0"
- "@smithy/node-config-provider": "npm:^3.1.4"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/signature-v4": "npm:^4.1.0"
- "@smithy/smithy-client": "npm:^3.2.0"
- "@smithy/types": "npm:^3.3.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.3"
- "@smithy/util-stream": "npm:^3.1.3"
+ "@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/81dd57dcb9214c1bc311546f71391132f42a9d35e857781fb1466940802a069337109cd1ff93cc64044f91f092e9e810ec6c2f140284a62ef6bda9e5b9164b6a
+ checksum: 10c0/1387b24256680f9d58c74db02fc32696a503d1d4299f8aaabf6b66350788105b7ae181880bd8a2dec39e3c735d98f41583dee673eab7f46c322d530b13ff51e9
languageName: node
linkType: hard
-"@aws-sdk/middleware-ssec@npm:3.609.0":
- version: 3.609.0
- resolution: "@aws-sdk/middleware-ssec@npm:3.609.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.609.0"
- "@smithy/types": "npm:^3.3.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/7688628299c3d3352182634836d8a5ad89d69dfedd91d7386ffeaa8288160329eef7d399321b7841bb4c84c9741d7245ef218657a8df71248b5ce5f7273e303d
+ checksum: 10c0/5041d9d367d1b0daa897351b8d446e66929577b80a86e06af40ee5664c3f29cd5a35230d93d522e9acc23c15db4c4dfcc39a092e12a4be73061069b1a99d674a
languageName: node
linkType: hard
-"@aws-sdk/middleware-user-agent@npm:3.645.0":
- version: 3.645.0
- resolution: "@aws-sdk/middleware-user-agent@npm:3.645.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/types": "npm:3.609.0"
- "@aws-sdk/util-endpoints": "npm:3.645.0"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/types": "npm:^3.3.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/f5f2d4776c1dae185c3ec14f56504b7000ad3fa774d63cfce73db438ca3529c719dad879761638f2682e5872608db636106f0168f4e3266180db712e803f8ba1
+ checksum: 10c0/3af4fc987d3a3cfa9036c67f60fb939a02d801ccb2781ea0be653896dfb34382c4c895a2e3ce2c48f2db547aea09d871217d77c814331251faf10b5a472974f7
languageName: node
linkType: hard
-"@aws-sdk/region-config-resolver@npm:3.614.0":
- version: 3.614.0
- resolution: "@aws-sdk/region-config-resolver@npm:3.614.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.609.0"
- "@smithy/node-config-provider": "npm:^3.1.4"
- "@smithy/types": "npm:^3.3.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.3"
+ "@smithy/util-middleware": "npm:^3.0.10"
tslib: "npm:^2.6.2"
- checksum: 10c0/555842b34c26398741fa3a1f629d27d210270516b453b0a7237672a4472ff8e204c5979fe1823baddf4d695d4d95a631fadfa78d1d27089d9e9cba28e736346e
+ checksum: 10c0/bc8765735dcd888a73336d1c0cac75fec0303446f2cd97c7818cec89d5d9f7e4b98705de1e751a47abbc3442d9237169dc967f175be27d9f828e65acb6c2d23a
languageName: node
linkType: hard
-"@aws-sdk/signature-v4-multi-region@npm:3.635.0":
- version: 3.635.0
- resolution: "@aws-sdk/signature-v4-multi-region@npm:3.635.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.635.0"
- "@aws-sdk/types": "npm:3.609.0"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/signature-v4": "npm:^4.1.0"
- "@smithy/types": "npm:^3.3.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/85c43b96d803e6fa503bbac3c07334f31b65be42f2c863e9c37411acfb6d484f464a70409585fab2c32be59b1e65ad735e2e64235f2ee33501b7d2c8f85647e9
+ checksum: 10c0/2d429b1ad202d4ff6e56671f8778d42b84a9bc6d03ac3db96bc332d11411cae461d78c7a76c0c9f597ac2c51fb88bf8db7071782fac85392350d09dfdaabbf15
languageName: node
linkType: hard
-"@aws-sdk/token-providers@npm:3.614.0":
- version: 3.614.0
- resolution: "@aws-sdk/token-providers@npm:3.614.0"
+"@aws-sdk/token-providers@npm:3.699.0":
+ version: 3.699.0
+ resolution: "@aws-sdk/token-providers@npm:3.699.0"
dependencies:
- "@aws-sdk/types": "npm:3.609.0"
- "@smithy/property-provider": "npm:^3.1.3"
- "@smithy/shared-ini-file-loader": "npm:^3.1.4"
- "@smithy/types": "npm:^3.3.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.614.0
- checksum: 10c0/b794bcb9ad05f57bfc415e9290d3ea177701bb3221a9c5e1d4529deb946bd418acb7ac7407adb8d2f3da7d3793a62c7c1b43a8c1a8fe7999e38485208811f59a
+ "@aws-sdk/client-sso-oidc": ^3.699.0
+ checksum: 10c0/f69d005aff7e85d04930374651edb75937cadab5baaa365044bf1318207b208d7cf857142fdbb8e66055fb92043140531945986346661bc82322b7307b109d56
languageName: node
linkType: hard
-"@aws-sdk/types@npm:3.609.0, @aws-sdk/types@npm:^3.1.0, @aws-sdk/types@npm:^3.222.0":
+"@aws-sdk/types@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/types@npm:3.696.0"
+ dependencies:
+ "@smithy/types": "npm:^3.7.1"
+ tslib: "npm:^2.6.2"
+ checksum: 10c0/3721939d5dd2a68fa4aee89d56b4817dd6c020721e2b2ea5b702968e7055826eb37e1924bc298007686304bf9bb6623bfec26b5cfd0663f2dba9d1b48437bb91
+ languageName: node
+ linkType: hard
+
+"@aws-sdk/types@npm:^3.1.0, @aws-sdk/types@npm:^3.222.0":
version: 3.609.0
resolution: "@aws-sdk/types@npm:3.609.0"
dependencies:
@@ -767,24 +792,24 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/util-arn-parser@npm:3.568.0":
- version: 3.568.0
- resolution: "@aws-sdk/util-arn-parser@npm:3.568.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/4e6168b86a1ff4509f25b56e473c95bdcc0ecbaedcded29cbbd500eb7c156de63f2426282cd50489ac7f321a990056349974730f9e27ac3fe872ba3573b09fb6
+ checksum: 10c0/dd3ff41885f3c9c69043bf145d9e28ba5d18e71d3ffc5e97f3700fa4f9461d092d33d632eca00236f00e25ebcf39ed1a6900d7b39d2f592c83e38115890ad701
languageName: node
linkType: hard
-"@aws-sdk/util-endpoints@npm:3.645.0":
- version: 3.645.0
- resolution: "@aws-sdk/util-endpoints@npm:3.645.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.609.0"
- "@smithy/types": "npm:^3.3.0"
- "@smithy/util-endpoints": "npm:^2.0.5"
+ "@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/bfb1e12379f688d20dd59cb7aba86a32138c25bfc7c6d081dec506e553292ee6962427daf2aa05a095a64506cba85ef3e55f472fbc9f4e08cabea4f8983edafe
+ checksum: 10c0/b32822b5f6924b8e3f88c7269afb216d07eccb338627a366ff3f94d98e7f5e4a9448dcf7c5ac97fc31fd0dfec5dfec52bbbeda65d84edd33fd509ed1dbfb1993
languageName: node
linkType: hard
@@ -797,32 +822,33 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/util-user-agent-browser@npm:3.609.0":
- version: 3.609.0
- resolution: "@aws-sdk/util-user-agent-browser@npm:3.609.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.609.0"
- "@smithy/types": "npm:^3.3.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/ca2f2863d753521fd63e0c924ed6f9602cc9f5bb65f7d0111be140d037962cf6897f49929dde21e4d8e613895486d9053abd8965d34a9a6ecc4a81de401f0f16
+ checksum: 10c0/e72e35b21e6945d8a3cc46f92a5a6509842fe5439c2b1628f72d1f0932398d4aae2648c8a1779e2936aa4f4720047344790dc533f334ae18b20a43443d4a7b93
languageName: node
linkType: hard
-"@aws-sdk/util-user-agent-node@npm:3.614.0":
- version: 3.614.0
- resolution: "@aws-sdk/util-user-agent-node@npm:3.614.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/types": "npm:3.609.0"
- "@smithy/node-config-provider": "npm:^3.1.4"
- "@smithy/types": "npm:^3.3.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/1e7b4d572a2915d921db814efbf771603b605aea114399aa357208433746f4b2990c927bdedd8616a6e50c98588032449b8994ce9ffae1cce7976986dc40adc1
+ checksum: 10c0/9dd7ef236ff13552f559d0e78bfffe424032dc4040306808542a2eedbe80801ae05389c415b770461b6b39a0b35cdbebf97e673e6f7132e05121708acee3db83
languageName: node
linkType: hard
@@ -835,13 +861,13 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/xml-builder@npm:3.609.0":
- version: 3.609.0
- resolution: "@aws-sdk/xml-builder@npm:3.609.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.3.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/1d75f2dc7ff35557a1c437f108656574c737f0a9f9d0c91773cbdadbf3c42892e9305e1e1fd5b0c8b73520a902b1513d1a7d07864b964d6a369540ee23ad0ddb
+ checksum: 10c0/7a628df60d55bbee0dafd1920b37e071c9c663ef8b3ef8e601a528185f0503d6b4da50350f636b1f09851f60314e12b28d16fa1239f40a6fb4866e9f6f829778
languageName: node
linkType: hard
@@ -3657,7 +3683,7 @@ __metadata:
languageName: node
linkType: hard
-"@mongodb-js/saslprep@npm:^1.1.0":
+"@mongodb-js/saslprep@npm:^1.1.5":
version: 1.1.9
resolution: "@mongodb-js/saslprep@npm:1.1.9"
dependencies:
@@ -3801,44 +3827,25 @@ __metadata:
languageName: node
linkType: hard
-"@one-ini/wasm@npm:0.1.1":
- version: 0.1.1
- resolution: "@one-ini/wasm@npm:0.1.1"
- checksum: 10c0/54700e055037f1a63bfcc86d24822203b25759598c2c3e295d1435130a449108aebc119c9c2e467744767dbe0b6ab47a182c61aa1071ba7368f5e20ab197ba65
- languageName: node
- linkType: hard
-
-"@payloadcms/db-mongodb@npm:beta":
- version: 3.0.0-beta.130
- resolution: "@payloadcms/db-mongodb@npm:3.0.0-beta.130"
+"@payloadcms/db-mongodb@npm:^3.2.1":
+ version: 3.2.1
+ resolution: "@payloadcms/db-mongodb@npm:3.2.1"
dependencies:
- bson-objectid: "npm:2.0.4"
http-status: "npm:1.6.2"
- mongoose: "npm:6.12.3"
- mongoose-aggregate-paginate-v2: "npm:1.0.6"
- mongoose-paginate-v2: "npm:1.7.22"
+ mongoose: "npm:8.8.1"
+ mongoose-aggregate-paginate-v2: "npm:1.1.2"
+ mongoose-paginate-v2: "npm:1.8.5"
prompts: "npm:2.4.2"
uuid: "npm:10.0.0"
peerDependencies:
- payload: 3.0.0-beta.130
- checksum: 10c0/7ab80b76c46ecf1693b6d780f5b8089b62f83bc19379d61a28acb944617d5f898d3ffaf305c92b2655badd29be8408370ce9bf1e14d0f920f8120996e777df8a
+ payload: 3.2.1
+ checksum: 10c0/2b0cf665db5a026d6131b8966b8262a1cd6252b4a734c7d520dba2dde589abdc5ecb196fe770ea15b6f9b52f2edaa0c8da01bea770477a2bd55315cd7b82c088
languageName: node
linkType: hard
-"@payloadcms/email-nodemailer@npm:3.0.0-beta.118":
- version: 3.0.0-beta.118
- resolution: "@payloadcms/email-nodemailer@npm:3.0.0-beta.118"
- dependencies:
- nodemailer: "npm:6.9.10"
- peerDependencies:
- payload: 3.0.0-beta.118
- checksum: 10c0/f72f1153c5e373696f6eb8b96ae885645a456f4ce5a921895b5014fc08d61bb525f6769c764cbb0577610074192803f16c4f45391aad20e42599d95e1c72efa4
- languageName: node
- linkType: hard
-
-"@payloadcms/graphql@npm:3.0.0-beta.130":
- version: 3.0.0-beta.130
- resolution: "@payloadcms/graphql@npm:3.0.0-beta.130"
+"@payloadcms/graphql@npm:3.2.1":
+ version: 3.2.1
+ resolution: "@payloadcms/graphql@npm:3.2.1"
dependencies:
graphql-scalars: "npm:1.22.2"
pluralize: "npm:8.0.0"
@@ -3846,21 +3853,21 @@ __metadata:
tsx: "npm:4.19.2"
peerDependencies:
graphql: ^16.8.1
- payload: 3.0.0-beta.130
+ payload: 3.2.1
bin:
payload-graphql: bin.js
- checksum: 10c0/7eafdabdd308c982fb4b8b34f570c87736b92926d576fa0abae86aad924b5544340cc7cc13d83de668b1853bcc4b97ce0eab5241f8196a9f6b2d815709840d9e
+ checksum: 10c0/a6dc7677f0d6a5a2aaa148bc0e1172fb82dc12f6fc125d1e661e62b572fea6e30d614465f16cbd7da88a6dbb8bbac9243bc73c817ad47ae8d5b6492c390f69e8
languageName: node
linkType: hard
-"@payloadcms/next@npm:beta":
- version: 3.0.0-beta.130
- resolution: "@payloadcms/next@npm:3.0.0-beta.130"
+"@payloadcms/next@npm:^3.2.1":
+ version: 3.2.1
+ resolution: "@payloadcms/next@npm:3.2.1"
dependencies:
"@dnd-kit/core": "npm:6.0.8"
- "@payloadcms/graphql": "npm:3.0.0-beta.130"
- "@payloadcms/translations": "npm:3.0.0-beta.130"
- "@payloadcms/ui": "npm:3.0.0-beta.130"
+ "@payloadcms/graphql": "npm:3.2.1"
+ "@payloadcms/translations": "npm:3.2.1"
+ "@payloadcms/ui": "npm:3.2.1"
busboy: "npm:^1.6.0"
file-type: "npm:19.3.0"
graphql-http: "npm:^1.22.0"
@@ -3872,54 +3879,54 @@ __metadata:
sass: "npm:1.77.4"
sonner: "npm:^1.5.0"
uuid: "npm:10.0.0"
- ws: "npm:^8.16.0"
peerDependencies:
graphql: ^16.8.1
next: ^15.0.0
- payload: 3.0.0-beta.130
- checksum: 10c0/68735950a5f8bcac8abeebdf043bb10a88e335f4692dee2953fce0d006ac86af6a9ff7eb419cc1bc74532e421b5b2f879f41f239716d1b276ca0ed740afca95d
+ payload: 3.2.1
+ checksum: 10c0/77e6137b78c0f5531a9fb23f52873707ecc00384dfe3ee4d4f6304e093ea539049e7aa285ef5e2f1a1c555e5dfe8ad997acd9f6938b9ed28c5381c68650b7c0b
languageName: node
linkType: hard
-"@payloadcms/plugin-cloud@npm:beta":
- version: 3.0.0-beta.118
- resolution: "@payloadcms/plugin-cloud@npm:3.0.0-beta.118"
+"@payloadcms/plugin-cloud@npm:^3.0.2":
+ version: 3.0.2
+ resolution: "@payloadcms/plugin-cloud@npm:3.0.2"
dependencies:
- "@aws-sdk/client-cognito-identity": "npm:^3.614.0"
- "@aws-sdk/client-s3": "npm:^3.614.0"
- "@aws-sdk/credential-providers": "npm:^3.614.0"
- "@aws-sdk/lib-storage": "npm:^3.614.0"
- "@payloadcms/email-nodemailer": "npm:3.0.0-beta.118"
+ "@aws-sdk/client-cognito-identity": "npm:^3.289.0"
+ "@aws-sdk/client-s3": "npm:^3.142.0"
+ "@aws-sdk/credential-providers": "npm:^3.289.0"
+ "@aws-sdk/lib-storage": "npm:^3.267.0"
amazon-cognito-identity-js: "npm:^6.1.2"
- nodemailer: "npm:6.9.10"
- resend: "npm:^0.17.2"
+ nodemailer: "npm:6.9.9"
peerDependencies:
- payload: 3.0.0-beta.118
- checksum: 10c0/fd8a668c5f188aeddfe658daa370004e46bbe5ea1a6d41c4233f1637eeeaba1fe33c3549b58e9049d1a55b8755a1391ceecf429f4fd9f5ca590ac68ac235a49b
+ payload: ^1.8.2 || ^2.0.0
+ checksum: 10c0/e269d32aaef694c9d80948e0a5086c9d82671ead3786d62bb470b91c714243ea36ad3fd8629e90eceac084476a2073e4317222e3eafa220fcdcd466ec51dcf27
languageName: node
linkType: hard
-"@payloadcms/richtext-lexical@npm:beta":
- version: 3.0.0-beta.130
- resolution: "@payloadcms/richtext-lexical@npm:3.0.0-beta.130"
+"@payloadcms/richtext-lexical@npm:^3.2.1":
+ version: 3.2.1
+ resolution: "@payloadcms/richtext-lexical@npm:3.2.1"
dependencies:
"@lexical/headless": "npm:0.20.0"
"@lexical/link": "npm:0.20.0"
"@lexical/list": "npm:0.20.0"
"@lexical/mark": "npm:0.20.0"
- "@lexical/markdown": "npm:0.20.0"
"@lexical/react": "npm:0.20.0"
"@lexical/rich-text": "npm:0.20.0"
"@lexical/selection": "npm:0.20.0"
"@lexical/utils": "npm:0.20.0"
- "@payloadcms/translations": "npm:3.0.0-beta.130"
- "@payloadcms/ui": "npm:3.0.0-beta.130"
+ "@payloadcms/translations": "npm:3.2.1"
+ "@payloadcms/ui": "npm:3.2.1"
"@types/uuid": "npm:10.0.0"
+ acorn: "npm:8.12.1"
bson-objectid: "npm:2.0.4"
dequal: "npm:2.0.3"
escape-html: "npm:1.0.3"
lexical: "npm:0.20.0"
- react-error-boundary: "npm:4.0.13"
+ mdast-util-from-markdown: "npm:2.0.2"
+ mdast-util-mdx-jsx: "npm:3.1.3"
+ micromark-extension-mdx-jsx: "npm:3.0.1"
+ react-error-boundary: "npm:4.1.1"
ts-essentials: "npm:10.0.3"
uuid: "npm:10.0.0"
peerDependencies:
@@ -3929,33 +3936,32 @@ __metadata:
"@lexical/link": 0.20.0
"@lexical/list": 0.20.0
"@lexical/mark": 0.20.0
- "@lexical/markdown": 0.20.0
"@lexical/react": 0.20.0
"@lexical/rich-text": 0.20.0
"@lexical/selection": 0.20.0
"@lexical/table": 0.20.0
"@lexical/utils": 0.20.0
- "@payloadcms/next": 3.0.0-beta.130
+ "@payloadcms/next": 3.2.1
lexical: 0.20.0
- payload: 3.0.0-beta.130
+ payload: 3.2.1
react: ^19.0.0 || ^19.0.0-rc-65a56d0e-20241020
react-dom: ^19.0.0 || ^19.0.0-rc-65a56d0e-20241020
- checksum: 10c0/6064a58b9b1209f257f1cf189b47050c2e9c8524feb5ecc43ae662082c532abf32f2badf44a162a4233109faf20f995b80b18fee61c9d889fb03b9b113ec7b35
+ checksum: 10c0/4d7e5932c13f0648641ffc7e2bacbc20d303ec1d4f1ebb6fc4dd5580845cbbb5353339fe669f03ede0354589bd2b0ddce9dbeaae3b6f248efdad95c0f6ed8b19
languageName: node
linkType: hard
-"@payloadcms/translations@npm:3.0.0-beta.130":
- version: 3.0.0-beta.130
- resolution: "@payloadcms/translations@npm:3.0.0-beta.130"
+"@payloadcms/translations@npm:3.2.1":
+ version: 3.2.1
+ resolution: "@payloadcms/translations@npm:3.2.1"
dependencies:
- date-fns: "npm:3.3.1"
- checksum: 10c0/3a928fae250a0e97bcb40f4281d10c04cc5a40cdad9eb8d33248d0c49091b66ac6bc22a01d553a8727b6e83e57767d8d76bb96317bf7685780550c2f2b8ca3ea
+ date-fns: "npm:4.1.0"
+ checksum: 10c0/6778b89874c8ab9161de2c315ebbf39d52e286609b61f83670b8e919751a454efab86f565711b1e476151e73cbe9841c87aed59954a1101003fdd3aa6f8ea4a8
languageName: node
linkType: hard
-"@payloadcms/ui@npm:3.0.0-beta.130":
- version: 3.0.0-beta.130
- resolution: "@payloadcms/ui@npm:3.0.0-beta.130"
+"@payloadcms/ui@npm:3.2.1":
+ version: 3.2.1
+ resolution: "@payloadcms/ui@npm:3.2.1"
dependencies:
"@dnd-kit/core": "npm:6.0.8"
"@dnd-kit/sortable": "npm:7.0.2"
@@ -3963,15 +3969,14 @@ __metadata:
"@faceless-ui/scroll-info": "npm:2.0.0-beta.0"
"@faceless-ui/window-info": "npm:3.0.0-beta.0"
"@monaco-editor/react": "npm:4.6.0"
- "@payloadcms/translations": "npm:3.0.0-beta.130"
+ "@payloadcms/translations": "npm:3.2.1"
body-scroll-lock: "npm:4.0.0-beta.0"
bson-objectid: "npm:2.0.4"
- date-fns: "npm:3.3.1"
+ date-fns: "npm:4.1.0"
dequal: "npm:2.0.3"
md5: "npm:2.3.0"
object-to-formdata: "npm:4.5.1"
qs-esm: "npm:7.0.2"
- react-animate-height: "npm:2.1.2"
react-datepicker: "npm:6.9.0"
react-image-crop: "npm:10.1.8"
react-select: "npm:5.8.0"
@@ -3982,10 +3987,10 @@ __metadata:
uuid: "npm:10.0.0"
peerDependencies:
next: ^15.0.0
- payload: 3.0.0-beta.130
+ payload: 3.2.1
react: ^19.0.0 || ^19.0.0-rc-65a56d0e-20241020
react-dom: ^19.0.0 || ^19.0.0-rc-65a56d0e-20241020
- checksum: 10c0/e1dbae279c1a9ca663d2084e9eae79763e71edc597207669d1f078042504b659ebf4c87389e8ceb8400ea1002b514515e1e662d2cefbfe1d41a1e7f2f87a943b
+ checksum: 10c0/89e62c2a3408122b8b9174e1c677212464972daedb8720e1f803c3e95c72743d5b847faba806eaf38c91dea47a53cb0ad17e41443a9f23d2eef2fb5af0346a5b
languageName: node
linkType: hard
@@ -4033,18 +4038,6 @@ __metadata:
languageName: node
linkType: hard
-"@react-email/render@npm:0.0.7":
- version: 0.0.7
- resolution: "@react-email/render@npm:0.0.7"
- dependencies:
- html-to-text: "npm:9.0.3"
- pretty: "npm:2.0.0"
- react: "npm:18.2.0"
- react-dom: "npm:18.2.0"
- checksum: 10c0/12c1767995e0994cfeb8e81b17ea6a326db25d3bb290297d2889cde0b37de02384ad1fb36f9902ac9a147b8ff0a4cb1134b0c2aa17b59ec154441b553d4e09c1
- languageName: node
- linkType: hard
-
"@rtsao/scc@npm:^1.1.0":
version: 1.1.0
resolution: "@rtsao/scc@npm:1.1.0"
@@ -4059,16 +4052,6 @@ __metadata:
languageName: node
linkType: hard
-"@selderee/plugin-htmlparser2@npm:^0.10.0":
- version: 0.10.0
- resolution: "@selderee/plugin-htmlparser2@npm:0.10.0"
- dependencies:
- domhandler: "npm:^5.0.3"
- selderee: "npm:^0.10.0"
- checksum: 10c0/361596e51f4593cb74c6eb482401577f00d75f2d5297f1b0b7606de7360b52703ec1e0006f7c32aeb12a8e35ba0bc38e6bc1cef48c2419d9ca01e6f4fa9ea6f1
- languageName: node
- linkType: hard
-
"@sinclair/typebox@npm:^0.27.8":
version: 0.27.8
resolution: "@sinclair/typebox@npm:0.27.8"
@@ -4090,189 +4073,187 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/abort-controller@npm:^3.1.1":
- version: 3.1.1
- resolution: "@smithy/abort-controller@npm:3.1.1"
+"@smithy/abort-controller@npm:^3.1.7, @smithy/abort-controller@npm:^3.1.8":
+ version: 3.1.8
+ resolution: "@smithy/abort-controller@npm:3.1.8"
dependencies:
- "@smithy/types": "npm:^3.3.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/914933d961b3b29db41a10b9040396968a738340d2bfd7f0b553521a91624ff86ee4ce7d97c15e3d94ca5e2b924da9dbefaf91e6cbd34db25d493690e4889f93
+ checksum: 10c0/ba62148955592036502880ac68a3fd1d4b0b70e3ace36ef9f1d0f507287795875598e2b9823ab6cdf542dcdb9fe75b57872694fc4a8108f7ab71938426a1c89c
languageName: node
linkType: hard
-"@smithy/chunked-blob-reader-native@npm:^3.0.0":
- version: 3.0.0
- resolution: "@smithy/chunked-blob-reader-native@npm:3.0.0"
+"@smithy/chunked-blob-reader-native@npm:^3.0.1":
+ version: 3.0.1
+ resolution: "@smithy/chunked-blob-reader-native@npm:3.0.1"
dependencies:
"@smithy/util-base64": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/f3cbd03baaaf33a2c44a484851e3f2902f87cbb2168abff179276b19fd137be021393551b9270f9f3135408d816a06fe84ff826d9beb576dbe53fae9cf487362
+ checksum: 10c0/26f7660d3cb5a257d1db70aaa4b0a109bf4412c3069d35b40645a045481e1633765c8a530ffdab4645bf640fdc957693fa84c6ebb15e864b7bd4be9d4e16b46c
languageName: node
linkType: hard
-"@smithy/chunked-blob-reader@npm:^3.0.0":
- version: 3.0.0
- resolution: "@smithy/chunked-blob-reader@npm:3.0.0"
+"@smithy/chunked-blob-reader@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@smithy/chunked-blob-reader@npm:4.0.0"
dependencies:
tslib: "npm:^2.6.2"
- checksum: 10c0/cc551e4d6c711bec381d70c3074e3937ee78245bb15dd55c28c43c6c30808af1855c8df4a785a1033ded1483979ae115cf2c9decce73083346734db0d32b2fe5
+ checksum: 10c0/4d997cb3a828c9c76bb764586918944ba07262aed832827d2be8ba3556f436171613e80b9f35a005af8f2189fc43befdfe44e21d9bde668fb48d5443f509ae22
languageName: node
linkType: hard
-"@smithy/config-resolver@npm:^3.0.5":
- version: 3.0.5
- resolution: "@smithy/config-resolver@npm:3.0.5"
+"@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.4"
- "@smithy/types": "npm:^3.3.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.3"
+ "@smithy/util-middleware": "npm:^3.0.10"
tslib: "npm:^2.6.2"
- checksum: 10c0/2346a0430a157660a759aee24fd20f18a9c4a3796938b1c792019a898afcdbb0af91af687b84f976a9f1e05eaba6946736e076f6b0ceb5f84b9063c67d2db8ae
+ checksum: 10c0/01686446680e1a0e98051034671813f2ea78664ee8a6b22811a12fb937c1ac5b67b63ab9a6ae5995c61991344fbacebc906189cd063512ef1c1bdfb6c491941d
languageName: node
linkType: hard
-"@smithy/core@npm:^2.4.0":
- version: 2.4.0
- resolution: "@smithy/core@npm:2.4.0"
+"@smithy/core@npm:^2.5.3, @smithy/core@npm:^2.5.4":
+ version: 2.5.4
+ resolution: "@smithy/core@npm:2.5.4"
dependencies:
- "@smithy/middleware-endpoint": "npm:^3.1.0"
- "@smithy/middleware-retry": "npm:^3.0.15"
- "@smithy/middleware-serde": "npm:^3.0.3"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/smithy-client": "npm:^3.2.0"
- "@smithy/types": "npm:^3.3.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.3"
+ "@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/78ac95fa0a7bde40feef804a642d9ce4737c47660728b0a7cf3af19404492bc0a0ee9db50a2ea3195d3314aef0c9db19575f50cbe89355f60a4ffb55a4d7d4bf
+ checksum: 10c0/b966d6a7136cc9575370a75ad380fc27b85e83dd6615c04a413a3ef7ef2a496adb1a7e46b8daa256cfaf5993c4d14957834a1dfd416a3bb16402d6012229e2a0
languageName: node
linkType: hard
-"@smithy/credential-provider-imds@npm:^3.2.0":
- version: 3.2.0
- resolution: "@smithy/credential-provider-imds@npm:3.2.0"
+"@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.4"
- "@smithy/property-provider": "npm:^3.1.3"
- "@smithy/types": "npm:^3.3.0"
- "@smithy/url-parser": "npm:^3.0.3"
+ "@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/aee18386df65ac01969d9210ff81fec79fb7d365823b0b99527834bcaf068b20ce8c9170fdedb7c141e1fe1a7c1878072c10c4d4908aa41ed5cbdf84debf8011
+ checksum: 10c0/c0f1d0c439f26d046ef130057ea1727cb06cab96054ed23202d6eb7eaec3e5d8ef96380b69fbdec505c569e5f2b56ed68ba8c687f47d7d99607c30e5f6e469c1
languageName: node
linkType: hard
-"@smithy/eventstream-codec@npm:^3.1.2":
- version: 3.1.2
- resolution: "@smithy/eventstream-codec@npm:3.1.2"
+"@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.3.0"
+ "@smithy/types": "npm:^3.7.1"
"@smithy/util-hex-encoding": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/fc8db95d9625524b2832cf9cea203b4c1062197d04eef6f676b6eea06cc0007d45acb5270937c1b6b76f98638acaf0c2b822278226c25841ab45488df786e332
+ checksum: 10c0/857761ffcf4cb6296dcb28763417b2e8f8ab2001f2fbf26ae169a6a57b4e095af380d81361ce1eddaacd664c99205071f1fb4ad4e6c4949022e7e86a6dd51590
languageName: node
linkType: hard
-"@smithy/eventstream-serde-browser@npm:^3.0.6":
- version: 3.0.6
- resolution: "@smithy/eventstream-serde-browser@npm:3.0.6"
+"@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.5"
- "@smithy/types": "npm:^3.3.0"
+ "@smithy/eventstream-serde-universal": "npm:^3.0.12"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/0b70151fe310687b38bf6619992a0e1d687bd4fd3c52278581147e0962bd1fa2f4bd5bfef13711d7d03d68a73484e81e5da7f7755c0141e61b045b9c1a387d10
+ checksum: 10c0/ca3b37dbb3a4e8ea04e101c6555cc75b517544397b8d4daf5b6ba31ed38aa0ccb439d84b081e3660e9bcad7a9f9faa4e8fc006c145da6355635bcbd8fec80204
languageName: node
linkType: hard
-"@smithy/eventstream-serde-config-resolver@npm:^3.0.3":
- version: 3.0.3
- resolution: "@smithy/eventstream-serde-config-resolver@npm:3.0.3"
+"@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.3.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/ef3360c0a0e4ad20f6e6da84b63e5071e3158af726bf291c610e2d42b5e042008cd9fe41ce2183f491422f23c36437987c0d1139e68b3c127d48c01b442dab82
+ checksum: 10c0/0b5c4bc240ee092b2e5d968ceba54b7a1cd41a13dceb88fb7c4cb809debfa29b2b40addbdd19e4ca9ecd499f1947fbd06e2eeeb3e132f0b23250b37cef1a8903
languageName: node
linkType: hard
-"@smithy/eventstream-serde-node@npm:^3.0.5":
- version: 3.0.5
- resolution: "@smithy/eventstream-serde-node@npm:3.0.5"
+"@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.5"
- "@smithy/types": "npm:^3.3.0"
+ "@smithy/eventstream-serde-universal": "npm:^3.0.12"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/7f1dc63838f68b99a49051ce64f81f624d881e1ccbe363e2dcfa33709d9913fec3939e9e48f75e2e11cd7a21bcfc7b7d430d10ea1c867720e0d934b2c065b16a
+ checksum: 10c0/7ec4b2d18992fd56be8fbd598ede7db1990512bfcc6f1a75b04dcd919d1aa328578c404ebde68779fd175259ee69044198ecd8c244d89e66e9cb05ffb9c14468
languageName: node
linkType: hard
-"@smithy/eventstream-serde-universal@npm:^3.0.5":
- version: 3.0.5
- resolution: "@smithy/eventstream-serde-universal@npm:3.0.5"
+"@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.2"
- "@smithy/types": "npm:^3.3.0"
+ "@smithy/eventstream-codec": "npm:^3.1.9"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/9d065a0fcb2de7b5d7a0ad7631949d5d972fc92e7edb66a695c61f98ab659b59e39d6375527e2a85af4a97ba4f8d998e99bd84a62ded2758c925f9fe3e4b2ab1
+ checksum: 10c0/5247673c34cba51e9764503812e693dce9653b5c2341b02b9f500ff0ee00f3f47e7041ac10085b2ee916d340e24f6e346fa5a0fdc9820fd952bcc5d88f487178
languageName: node
linkType: hard
-"@smithy/fetch-http-handler@npm:^3.2.4":
- version: 3.2.4
- resolution: "@smithy/fetch-http-handler@npm:3.2.4"
+"@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.0"
- "@smithy/querystring-builder": "npm:^3.0.3"
- "@smithy/types": "npm:^3.3.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/ef788ef9d4b88f11a3b9dea60de0e0fa500ce38f43ae1359b3053d4c0acfe81e53ce76d4e8dab7c25cec22cd95371a6c994de1a54118811e0b91e8bddd7c6e83
+ checksum: 10c0/e6307dfdb621a5481e7b263e2ad0a6c4b54982504c0c1ed8e2cd12d0b9b09dd99d0a7e4ebff9d8f30f1935bae24945f44cef98eca42ad119e4f1f23507ebb081
languageName: node
linkType: hard
-"@smithy/hash-blob-browser@npm:^3.1.2":
- version: 3.1.2
- resolution: "@smithy/hash-blob-browser@npm:3.1.2"
+"@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:^3.0.0"
- "@smithy/chunked-blob-reader-native": "npm:^3.0.0"
- "@smithy/types": "npm:^3.3.0"
+ "@smithy/chunked-blob-reader": "npm:^4.0.0"
+ "@smithy/chunked-blob-reader-native": "npm:^3.0.1"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/71b017ae71839e058661e22589bacbc204d4980df66d67725aaa415493107e2f0898e41d0c6a4cd2c96333648d472c66ed35ec3c264156e6021bda5d590eb5ab
+ checksum: 10c0/728becc50fd2463b93b77b6bfadafeee280f5c01d3a92ec227233cc47c3005f563209d1d144b83461f46d6c8a0674bb458581f6a1627ff43826a4466a0860e40
languageName: node
linkType: hard
-"@smithy/hash-node@npm:^3.0.3":
- version: 3.0.3
- resolution: "@smithy/hash-node@npm:3.0.3"
+"@smithy/hash-node@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/hash-node@npm:3.0.10"
dependencies:
- "@smithy/types": "npm:^3.3.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/d0ba0f069cb047a8a040733b9b119a194c130d287e8a68b8e79cf9cac5abe683df84ea28dd918e85a46031155e0d561f3c5854de3d280c3d501977a986550c8b
+ checksum: 10c0/1134872f7c4ba2c35583bd0932bf0b8cb99f5f24e79235660a5e0e0914c1d587c0ee7d44d5d4a8c0ed0c77249fc3a154d28a994dc2f42e27cf212d2052a5d0bd
languageName: node
linkType: hard
-"@smithy/hash-stream-node@npm:^3.1.2":
- version: 3.1.2
- resolution: "@smithy/hash-stream-node@npm:3.1.2"
+"@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.3.0"
+ "@smithy/types": "npm:^3.7.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/2daadb5d6f08022ca1b1ecb4256d613613be86b7b768fb221ee3a2a7e584df0f4a546fba080e8366211c99f9ddb66d57e38525d10839405eab0b9d5be81d313b
+ checksum: 10c0/de292bb7f70ed6f8fab73a9c0adcd0d659a5ecb46ade36e852a0402323715223c859b10e7344d31c16d59b9a4077626c666754421cfd5a04e17dc1a3e2a5490d
languageName: node
linkType: hard
-"@smithy/invalid-dependency@npm:^3.0.3":
- version: 3.0.3
- resolution: "@smithy/invalid-dependency@npm:3.0.3"
+"@smithy/invalid-dependency@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/invalid-dependency@npm:3.0.10"
dependencies:
- "@smithy/types": "npm:^3.3.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/c52e909fa0cd8630e1e850da78af20abb11091b134ca107108e4f8336eee4b1b8cde60ba5946eff4bfe3d7bddc74e80a59fa0f448a7b45bf69df1e247aeee607
+ checksum: 10c0/98bae16110f3f895991c1bd0a4291d9c900380b159c6d50d7327bd5161469f63510209ea3b08cfb0a12a66dfd9de8a1dc1ac71708b68f97c06b4ee6a2cde60b7
languageName: node
linkType: hard
@@ -4294,192 +4275,194 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/md5-js@npm:^3.0.3":
- version: 3.0.3
- resolution: "@smithy/md5-js@npm:3.0.3"
+"@smithy/md5-js@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/md5-js@npm:3.0.10"
dependencies:
- "@smithy/types": "npm:^3.3.0"
+ "@smithy/types": "npm:^3.7.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/048b966676f5944da701120ca2e133de8a17fa403f2dc96dd88a82ea2248e2b439147b062ad8860486a9897899dd28de45cc0e2ae03c1221e2b987ad8e065464
+ checksum: 10c0/ab0675b36cd48c76f0512ff5c87bc3e3e64288123ee37a493bc514fbcf48355eb8a9e5ed30efb9066286122dc6d3e5981b0f0f619929bb568d4b3d9023de4ccc
languageName: node
linkType: hard
-"@smithy/middleware-content-length@npm:^3.0.5":
- version: 3.0.5
- resolution: "@smithy/middleware-content-length@npm:3.0.5"
+"@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.0"
- "@smithy/types": "npm:^3.3.0"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/fb8901dc0673709235dd5c0788bd9cb930a6590023ecf350fa4835289a606c2e6d60ca8fca90f7525bc15c005db9cf98ae8ccffccc42f611468863f883051a7d
+ checksum: 10c0/6d8db9bc97e3c09133ec9dc3114ca3e9ad3db5c234a2e109c3010e8661b488b08b8b2066bb2cd13da11d6ccffb9bbfbec1fa1552386d6e0d8d433b5041a6978b
languageName: node
linkType: hard
-"@smithy/middleware-endpoint@npm:^3.1.0":
- version: 3.1.0
- resolution: "@smithy/middleware-endpoint@npm:3.1.0"
+"@smithy/middleware-endpoint@npm:^3.2.3, @smithy/middleware-endpoint@npm:^3.2.4":
+ version: 3.2.4
+ resolution: "@smithy/middleware-endpoint@npm:3.2.4"
dependencies:
- "@smithy/middleware-serde": "npm:^3.0.3"
- "@smithy/node-config-provider": "npm:^3.1.4"
- "@smithy/shared-ini-file-loader": "npm:^3.1.4"
- "@smithy/types": "npm:^3.3.0"
- "@smithy/url-parser": "npm:^3.0.3"
- "@smithy/util-middleware": "npm:^3.0.3"
+ "@smithy/core": "npm:^2.5.4"
+ "@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/c50e0ee205d5126263be1bda8c5580048bddb939c75521dc8a53a7fae5b5fbea6ad8258d22cd59e49c88a5c0c669c246bf1eefb5a7dc03660d778e7ce6cd9aca
+ checksum: 10c0/3d7f6322e26cc05e0ecdfa19a7fdf422fdddc2816b109a84a76b947e688c2a1c03e08a43434f660cc568b00114628b5b0f50b45a6b6bf95501aeb7d55cdef461
languageName: node
linkType: hard
-"@smithy/middleware-retry@npm:^3.0.15":
- version: 3.0.15
- resolution: "@smithy/middleware-retry@npm:3.0.15"
+"@smithy/middleware-retry@npm:^3.0.27":
+ version: 3.0.28
+ resolution: "@smithy/middleware-retry@npm:3.0.28"
dependencies:
- "@smithy/node-config-provider": "npm:^3.1.4"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/service-error-classification": "npm:^3.0.3"
- "@smithy/smithy-client": "npm:^3.2.0"
- "@smithy/types": "npm:^3.3.0"
- "@smithy/util-middleware": "npm:^3.0.3"
- "@smithy/util-retry": "npm:^3.0.3"
+ "@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.5"
+ "@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/0c09e4325081305a948468aae75e9bd7645946f11c8aace9efa6c22cd286a7105b2bca9ef418bea849bbdf46cc46c295ac7b56193b8d7c7ba15597fc804b05c2
+ checksum: 10c0/e2d4cf85a161ca711d4a6e9be420d2e9ae387d21d10ed68db2dbba9a5a76fdf6df03a16bfd9309075ea846661a7c292d073ad444cee82367a4389b12f543facc
languageName: node
linkType: hard
-"@smithy/middleware-serde@npm:^3.0.3":
- version: 3.0.3
- resolution: "@smithy/middleware-serde@npm:3.0.3"
+"@smithy/middleware-serde@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/middleware-serde@npm:3.0.10"
dependencies:
- "@smithy/types": "npm:^3.3.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/5b2ad50dea8af9a7a98816c0746c14af4267d053adcade9586a260cff968c41d768220b2987e5b751dbee7cd8c9538ff9839fbc7698dd09bf9b9ca4f5c8001ab
+ checksum: 10c0/407ddbbf856c54ba5592b76aeeadc5a09a679614e8eaac91b8d662b6bd7e9cf16b60190eb15254befd34311ac137260c00433ac9126a734c6c60a256e55c0e69
languageName: node
linkType: hard
-"@smithy/middleware-stack@npm:^3.0.3":
- version: 3.0.3
- resolution: "@smithy/middleware-stack@npm:3.0.3"
+"@smithy/middleware-stack@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/middleware-stack@npm:3.0.10"
dependencies:
- "@smithy/types": "npm:^3.3.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/c886d367ce02f6ae7bc70c4060e79ddfa46c3b35851921364836d64efb76f2fc71b0c1c09401c47d289dc93527a7699085a3feb0778e0337862aa8e6473cb54b
+ checksum: 10c0/badcc1d275f7fd4957b6bce4e917060f971a4199e717cde7d3b4909be5d40e61c93328e2968e6885b4e8f7f5772e84ac743ddcc80031ab52efb47a3a3168beb0
languageName: node
linkType: hard
-"@smithy/node-config-provider@npm:^3.1.4":
- version: 3.1.4
- resolution: "@smithy/node-config-provider@npm:3.1.4"
+"@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.3"
- "@smithy/shared-ini-file-loader": "npm:^3.1.4"
- "@smithy/types": "npm:^3.3.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/1d69cb8f83292df9e15523a727d55f6b812ff0ca30d615439cc6e7a5fe0d59c9524875745939bba611ca818757790f37509bb843b95f1e6d6b1ccd6d6c546077
+ checksum: 10c0/b80a6d3f96979696499b27155c3e075f139fa6be6a2ea9688735bd1802f22bb41be4545dac9ea4db51519d22c6fb469e5bfad9063e2fa2b8771130d2f2d611a7
languageName: node
linkType: hard
-"@smithy/node-http-handler@npm:^3.1.4":
- version: 3.1.4
- resolution: "@smithy/node-http-handler@npm:3.1.4"
+"@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.1"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/querystring-builder": "npm:^3.0.3"
- "@smithy/types": "npm:^3.3.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/9d7354084ed19f0aefb127d640f4a96fa6f5cf4212b3f128d8c9fa3258061bf666e6101d659167693653d729b44b6e558968b5018910e6045a5f9ebd2529d395
+ checksum: 10c0/32bb521a6cc7692ee33a362256661dbdccedfe448f116595bf6870f5c4343e3152daf5f9ae0b43d4a888016ea9161375858046f141513fb1d6c61545572712fc
languageName: node
linkType: hard
-"@smithy/property-provider@npm:^3.1.3":
- version: 3.1.3
- resolution: "@smithy/property-provider@npm:3.1.3"
+"@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.3.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/e1414e01f6efc298728ff79c1513f9606b44c00b98eb92d003e332ae7312ac9c0e1b7ef08ce426c99545100531fdc33efc0d769b6f75a953df015a8479e73f90
+ checksum: 10c0/8dfcf30565b00287fd3c5ad2784f5c820264251dc9d1ac7334a224e40eb3eac4762a6198961d3e261bbcc738fc0c7c88ebd1007761e994569342f339ff503e1e
languageName: node
linkType: hard
-"@smithy/protocol-http@npm:^4.1.0":
- version: 4.1.0
- resolution: "@smithy/protocol-http@npm:4.1.0"
+"@smithy/protocol-http@npm:^4.1.7":
+ version: 4.1.7
+ resolution: "@smithy/protocol-http@npm:4.1.7"
dependencies:
- "@smithy/types": "npm:^3.3.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/0bf5b40709724ff47880132297ba210d7db3c36bb7c841bc20fe98a2daa39697ea5d943a8181753ac6af19f0c8c7831381b93c1ffb9867ef5b6d071297e80fb8
+ checksum: 10c0/1d5bf3e3ae9b3c7b58934163f56364228a42d50dcc64c83855be846d46f4954ed36b1bc3d949cd24bb5da3787d9b787637cffa5e3fdbbe8e1932e05ea14eace6
languageName: node
linkType: hard
-"@smithy/querystring-builder@npm:^3.0.3":
- version: 3.0.3
- resolution: "@smithy/querystring-builder@npm:3.0.3"
+"@smithy/querystring-builder@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/querystring-builder@npm:3.0.10"
dependencies:
- "@smithy/types": "npm:^3.3.0"
+ "@smithy/types": "npm:^3.7.1"
"@smithy/util-uri-escape": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/0fd88fb2f3b494981e286b840b7eeb90896d8cc2f47ce3964f65ae95eb74c82691af205bdc17abc39fd483e1952359459204686bb1741c9f425cd5a9a1503f65
+ checksum: 10c0/3a95519ee41f195c3b56978803d50ba2b5b2ce46fc0de063442cdab347528cd0e3c3d5cd0361bc33ceeec1893198cb3246c201026c3917349e0fb908ca8c3fb0
languageName: node
linkType: hard
-"@smithy/querystring-parser@npm:^3.0.3":
- version: 3.0.3
- resolution: "@smithy/querystring-parser@npm:3.0.3"
+"@smithy/querystring-parser@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/querystring-parser@npm:3.0.10"
dependencies:
- "@smithy/types": "npm:^3.3.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/a7bcbce8342ca520ca0dbbe420e93547c4eebf7193df4467bae5be6f0493492486a8dad6e20477c5f37f40b9903df91cb8bfb41ee1d21b63b5512f77291ffe6e
+ checksum: 10c0/e57c15087246e6a50348d557b670ded987ed5d88d4279a0a4896828d2be9fb2949f6b6c8656e5be45282c25cfa2fe62fe7fd9bd159ac30177f5b99181a5f4b74
languageName: node
linkType: hard
-"@smithy/service-error-classification@npm:^3.0.3":
- version: 3.0.3
- resolution: "@smithy/service-error-classification@npm:3.0.3"
+"@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.3.0"
- checksum: 10c0/8ba7b655668fff01eb5de1d504711d6304d3e8a8dbbcb0620921bfdaafa5abca7621c0278d21367782d6c53277cddb8bbb6f9373013f64aac0c855520696bbd1
+ "@smithy/types": "npm:^3.7.1"
+ checksum: 10c0/9b9d5e0436d168f6a3290edb008292e2cc28ec7d2d9227858aff7c9c70d732336b71898eb0cb7fa76ea04c0180ec3afaf7930c92e881efd4b91023d7d8919044
languageName: node
linkType: hard
-"@smithy/shared-ini-file-loader@npm:^3.1.4":
- version: 3.1.4
- resolution: "@smithy/shared-ini-file-loader@npm:3.1.4"
+"@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.3.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/e90e5e375fc5afb4dda335e1d0a9d3496cec731511c35351330a210dc22d22b398c45e49d3a4142e55ce7d0e1b280d1b3d46cecdd97b9527f2d9e89ced74f63b
+ checksum: 10c0/7479713932f00a6b85380fa8012ad893bb61e7ea614976e0ab2898767ff7dc91bb1dd813a4ec72e4850d6b10296f11032cd5dd916970042be376c19d0d3954b6
languageName: node
linkType: hard
-"@smithy/signature-v4@npm:^4.1.0":
- version: 4.1.0
- resolution: "@smithy/signature-v4@npm:4.1.0"
+"@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.0"
- "@smithy/types": "npm:^3.3.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.3"
+ "@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/7f20f60b1bc280fb60014d75fbafb1c923ef492997c02cabfa8f37e87381c5aa5c47cfd8a0d9e4c17020c5cf2ab73c461c5e2965a1d6f933b54f617fab27b8c6
+ checksum: 10c0/7cecc9c73cb863e15c4517601a2a1e82b3728fbe174c533d807beb54f59f66792891c82955d874baa27640201d719b6ea63497b376e4c7cd09d5d52ea36fe3fc
languageName: node
linkType: hard
-"@smithy/smithy-client@npm:^3.2.0":
- version: 3.2.0
- resolution: "@smithy/smithy-client@npm:3.2.0"
+"@smithy/smithy-client@npm:^3.4.4, @smithy/smithy-client@npm:^3.4.5":
+ version: 3.4.5
+ resolution: "@smithy/smithy-client@npm:3.4.5"
dependencies:
- "@smithy/middleware-endpoint": "npm:^3.1.0"
- "@smithy/middleware-stack": "npm:^3.0.3"
- "@smithy/protocol-http": "npm:^4.1.0"
- "@smithy/types": "npm:^3.3.0"
- "@smithy/util-stream": "npm:^3.1.3"
+ "@smithy/core": "npm:^2.5.4"
+ "@smithy/middleware-endpoint": "npm:^3.2.4"
+ "@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/e401e65de2b687fdb440d1c0535bad7a3539fda1820908bc2836abbe7c791b470c1091bf2b2bb13a3ce4a64c0fbec1df2e4c9959788e3310d410334f479a7829
+ checksum: 10c0/b9a56e20133d29ab2339d4d3b7b28601b7a98b899a7b0a5371c2c698c48e60c733fdad42fe1dec096c48a9de10d79de170f6eaa98a1bc1bd0c18a4b63c545e0d
languageName: node
linkType: hard
@@ -4492,14 +4475,23 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/url-parser@npm:^3.0.3":
- version: 3.0.3
- resolution: "@smithy/url-parser@npm:3.0.3"
+"@smithy/types@npm:^3.7.1":
+ version: 3.7.1
+ resolution: "@smithy/types@npm:3.7.1"
dependencies:
- "@smithy/querystring-parser": "npm:^3.0.3"
- "@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/9ed0ab14034369fd823587c22d22e257203638a327954853c9bb92c3571a94fa7dc56211f9340b0ac3af5c37dfa206fd99dcde4ee9164a300994314a83e0b042
+ checksum: 10c0/c82ad86087b6e0d2261f581a8cca1694a0af31458d7789ff5d8787973b4940a6d035082005dfc87857f266ee9cb512f7eb80535917e6dd6eb3d7d70c45d0f9aa
+ languageName: node
+ linkType: hard
+
+"@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.10"
+ "@smithy/types": "npm:^3.7.1"
+ tslib: "npm:^2.6.2"
+ checksum: 10c0/29c9d03ee86936ffb3bdcbb84ce14b7dacaadb2e61b5ed78ee91dfacb98e42048c70c718077347f0f39bce676168ba5fc1f1a8b19988f89f735c0b5e17cdc77a
languageName: node
linkType: hard
@@ -4561,42 +4553,42 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/util-defaults-mode-browser@npm:^3.0.15":
- version: 3.0.15
- resolution: "@smithy/util-defaults-mode-browser@npm:3.0.15"
+"@smithy/util-defaults-mode-browser@npm:^3.0.27":
+ version: 3.0.28
+ resolution: "@smithy/util-defaults-mode-browser@npm:3.0.28"
dependencies:
- "@smithy/property-provider": "npm:^3.1.3"
- "@smithy/smithy-client": "npm:^3.2.0"
- "@smithy/types": "npm:^3.3.0"
+ "@smithy/property-provider": "npm:^3.1.10"
+ "@smithy/smithy-client": "npm:^3.4.5"
+ "@smithy/types": "npm:^3.7.1"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/ca3e44fd9d3587861c36a12f7f5f27733f18c7b35ff335e3d12bbce4be06d140c9382e6e6496c575d55104468be267a88a9e63baab6bbc67f6343d785cd45fc1
+ checksum: 10c0/bba460478f70ef25312d3e5408e0caa5feaf0b2af11aedcfd9e4719874884b507edd2503790d938e22fff5387f1dd63cd33c920dddf16cb3e6a6588575be5522
languageName: node
linkType: hard
-"@smithy/util-defaults-mode-node@npm:^3.0.15":
- version: 3.0.15
- resolution: "@smithy/util-defaults-mode-node@npm:3.0.15"
+"@smithy/util-defaults-mode-node@npm:^3.0.27":
+ version: 3.0.28
+ resolution: "@smithy/util-defaults-mode-node@npm:3.0.28"
dependencies:
- "@smithy/config-resolver": "npm:^3.0.5"
- "@smithy/credential-provider-imds": "npm:^3.2.0"
- "@smithy/node-config-provider": "npm:^3.1.4"
- "@smithy/property-provider": "npm:^3.1.3"
- "@smithy/smithy-client": "npm:^3.2.0"
- "@smithy/types": "npm:^3.3.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.5"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/db935497dcd8d51ce9962051f68ea85c12f81100cffdb62816134b6ef2d92330f97eb029c1069c16678cf822a26d6bd730e9432787cc342e92eca8af85655513
+ checksum: 10c0/6b49892d58d9c38e92e9b82ca7cdc2c9627f56fb3bc62ddef9bb5f197c38df1b7089c73c2256281888aba48a0ddd9319eb86a616af7ab40342f07aea1136dd47
languageName: node
linkType: hard
-"@smithy/util-endpoints@npm:^2.0.5":
- version: 2.0.5
- resolution: "@smithy/util-endpoints@npm:2.0.5"
+"@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.4"
- "@smithy/types": "npm:^3.3.0"
+ "@smithy/node-config-provider": "npm:^3.1.11"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/4dd0740eaca169dc1078ef7e10dd0b0cc186e8c2bb1bf26c7ab8dff557c59f146bf6496a3e44a7bbb9ac6bfbcb587f1a100d81466f29b20dbb58e3e5cf5bceeb
+ checksum: 10c0/a1cd8cc912fb67ee07e6095990f3b237b2e53f73e493b2aaa85af904c4ce73ce739a68e4d3330a37b8c96cd00b6845205b836ee4ced97cf622413a34b913adc2
languageName: node
linkType: hard
@@ -4609,40 +4601,40 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/util-middleware@npm:^3.0.3":
- version: 3.0.3
- resolution: "@smithy/util-middleware@npm:3.0.3"
+"@smithy/util-middleware@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/util-middleware@npm:3.0.10"
dependencies:
- "@smithy/types": "npm:^3.3.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/1d7d01f75ab6d116e6d539bbcfc6f5d7f2b6e3a25f970758872a2e45c4a6b5795326d2f51b2566ca9fe5ba260d9176b33260bde15759c5296ab9f8557835364e
+ checksum: 10c0/01bbbd31044ab742985acac36aa61e240db16ed7dfa22b73779877eb5db0af14351883506fb34d2ee964598d72f4998d79409c271a62310647fb28faccd855a2
languageName: node
linkType: hard
-"@smithy/util-retry@npm:^3.0.3":
- version: 3.0.3
- resolution: "@smithy/util-retry@npm:3.0.3"
+"@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.3"
- "@smithy/types": "npm:^3.3.0"
+ "@smithy/service-error-classification": "npm:^3.0.10"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/bea28dff13ae32222dda579eb9bccfaf34b427ab46165509cd524a7080463361a39acc5d1aa7452714c38193a5523f3ab810cd2e60eef9bc768fd1ab23b5bde6
+ checksum: 10c0/ac1dcfd2e4ea1a4f99a42447b7fd8e4ea21589dfd87e9bc6a7bdf1d26e1f93ec71aa4cfde5e024b00d9b713b889f9db20a8d81b9e3ccdbe6f72bedb6269f01b8
languageName: node
linkType: hard
-"@smithy/util-stream@npm:^3.1.3":
- version: 3.1.3
- resolution: "@smithy/util-stream@npm:3.1.3"
+"@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:^3.2.4"
- "@smithy/node-http-handler": "npm:^3.1.4"
- "@smithy/types": "npm:^3.3.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/4ee3b323f727e7ff1e45ce561a1168dee1c9aaf9d275c019f19f9ee1af3abd0d6bf4c84fc2f11df259aeea1bffd1ddc40fff2c4c845bc41682dbf4a26946bf46
+ checksum: 10c0/dafaf4448e69cd65eda2bc7c43a48e945905808f635397e290b4e19cff2705ab444f1798829ca48b9a9efe4b7e569180eb6275ca42d04ce5abcf2dc9443f9c67
languageName: node
linkType: hard
@@ -4675,14 +4667,14 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/util-waiter@npm:^3.1.2":
- version: 3.1.2
- resolution: "@smithy/util-waiter@npm:3.1.2"
+"@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.1"
- "@smithy/types": "npm:^3.3.0"
+ "@smithy/abort-controller": "npm:^3.1.8"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/50e7ef8de9779650aec125b81b28e01e9b696f121841d6b1037fd7a2e1296db21c2399b3cf87381a256b3db04a63013c65dba187d22d2a38d31e389ef356c066
+ checksum: 10c0/c2e4b79412e26f70f4c63aebc519046a5a58a19f36bbc91702f402db5c8d1e065e081603f0db389682b1d84c1e67922c7f8d9921994a455532d4d093fff2f356
languageName: node
linkType: hard
@@ -5502,6 +5494,15 @@ __metadata:
languageName: node
linkType: hard
+"@types/acorn@npm:^4.0.0":
+ version: 4.0.6
+ resolution: "@types/acorn@npm:4.0.6"
+ dependencies:
+ "@types/estree": "npm:*"
+ checksum: 10c0/5a65a1d7e91fc95703f0a717897be60fa7ccd34b17f5462056274a246e6690259fe0a1baabc86fd3260354f87245cb3dc483346d7faad2b78fc199763978ede9
+ languageName: node
+ linkType: hard
+
"@types/aria-query@npm:^5.0.1":
version: 5.0.4
resolution: "@types/aria-query@npm:5.0.4"
@@ -5599,6 +5600,15 @@ __metadata:
languageName: node
linkType: hard
+"@types/debug@npm:^4.0.0":
+ version: 4.1.12
+ resolution: "@types/debug@npm:4.1.12"
+ dependencies:
+ "@types/ms": "npm:*"
+ checksum: 10c0/5dcd465edbb5a7f226e9a5efd1f399c6172407ef5840686b73e3608ce135eeca54ae8037dcd9f16bdb2768ac74925b820a8b9ecc588a58ca09eca6acabe33e2f
+ languageName: node
+ linkType: hard
+
"@types/doctrine@npm:^0.0.9":
version: 0.0.9
resolution: "@types/doctrine@npm:0.0.9"
@@ -5620,6 +5630,22 @@ __metadata:
languageName: node
linkType: hard
+"@types/estree-jsx@npm:^1.0.0":
+ version: 1.0.5
+ resolution: "@types/estree-jsx@npm:1.0.5"
+ dependencies:
+ "@types/estree": "npm:*"
+ checksum: 10c0/07b354331516428b27a3ab99ee397547d47eb223c34053b48f84872fafb841770834b90cc1a0068398e7c7ccb15ec51ab00ec64b31dc5e3dbefd624638a35c6d
+ languageName: node
+ linkType: hard
+
+"@types/estree@npm:*":
+ version: 1.0.6
+ resolution: "@types/estree@npm:1.0.6"
+ checksum: 10c0/cdfd751f6f9065442cd40957c07fd80361c962869aa853c1c2fd03e101af8b9389d8ff4955a43a6fcfa223dd387a089937f95be0f3eec21ca527039fd2d9859a
+ languageName: node
+ linkType: hard
+
"@types/estree@npm:^0.0.51":
version: 0.0.51
resolution: "@types/estree@npm:0.0.51"
@@ -5750,6 +5776,15 @@ __metadata:
languageName: node
linkType: hard
+"@types/mdast@npm:^4.0.0":
+ version: 4.0.4
+ resolution: "@types/mdast@npm:4.0.4"
+ dependencies:
+ "@types/unist": "npm:*"
+ checksum: 10c0/84f403dbe582ee508fd9c7643ac781ad8597fcbfc9ccb8d4715a2c92e4545e5772cbd0dbdf18eda65789386d81b009967fdef01b24faf6640f817287f54d9c82
+ languageName: node
+ linkType: hard
+
"@types/mdx@npm:^2.0.0":
version: 2.0.13
resolution: "@types/mdx@npm:2.0.13"
@@ -5764,6 +5799,13 @@ __metadata:
languageName: node
linkType: hard
+"@types/ms@npm:*":
+ version: 0.7.34
+ resolution: "@types/ms@npm:0.7.34"
+ checksum: 10c0/ac80bd90012116ceb2d188fde62d96830ca847823e8ca71255616bc73991aa7d9f057b8bfab79e8ee44ffefb031ddd1bcce63ea82f9e66f7c31ec02d2d823ccc
+ languageName: node
+ linkType: hard
+
"@types/node@npm:*":
version: 22.5.4
resolution: "@types/node@npm:22.5.4"
@@ -5914,6 +5956,13 @@ __metadata:
languageName: node
linkType: hard
+"@types/unist@npm:^2.0.0":
+ version: 2.0.11
+ resolution: "@types/unist@npm:2.0.11"
+ checksum: 10c0/24dcdf25a168f453bb70298145eb043cfdbb82472db0bc0b56d6d51cd2e484b9ed8271d4ac93000a80da568f2402e9339723db262d0869e2bf13bc58e081768d
+ languageName: node
+ linkType: hard
+
"@types/uuid@npm:10.0.0":
version: 10.0.0
resolution: "@types/uuid@npm:10.0.0"
@@ -5935,13 +5984,12 @@ __metadata:
languageName: node
linkType: hard
-"@types/whatwg-url@npm:^8.2.1":
- version: 8.2.2
- resolution: "@types/whatwg-url@npm:8.2.2"
+"@types/whatwg-url@npm:^11.0.2":
+ version: 11.0.5
+ resolution: "@types/whatwg-url@npm:11.0.5"
dependencies:
- "@types/node": "npm:*"
"@types/webidl-conversions": "npm:*"
- checksum: 10c0/7e5b6837daff8c6d189b13d19cc6d69e3bf954751f4f8a92d9a762c7f32ba75464d8e686a69c7d70e5092499c8ac14933c0ed416cf563689b04c4e10bff95e40
+ checksum: 10c0/7a9b9252dee98df6db1ad62337daca7f59ae50d7a3406d14ac6b57168d406004359994f3371155e24f3cf12002c4cb8bbb0883bd4cefb9d7ee8e2b510bdd7f5e
languageName: node
linkType: hard
@@ -6401,6 +6449,15 @@ __metadata:
languageName: node
linkType: hard
+"acorn@npm:8.12.1, acorn@npm:^8.11.3, acorn@npm:^8.12.1, acorn@npm:^8.7.1, acorn@npm:^8.8.2, acorn@npm:^8.9.0":
+ version: 8.12.1
+ resolution: "acorn@npm:8.12.1"
+ bin:
+ acorn: bin/acorn
+ checksum: 10c0/51fb26cd678f914e13287e886da2d7021f8c2bc0ccc95e03d3e0447ee278dd3b40b9c57dc222acd5881adcf26f3edc40901a4953403232129e3876793cd17386
+ languageName: node
+ linkType: hard
+
"acorn@npm:^7.4.1":
version: 7.4.1
resolution: "acorn@npm:7.4.1"
@@ -6410,15 +6467,6 @@ __metadata:
languageName: node
linkType: hard
-"acorn@npm:^8.11.3, acorn@npm:^8.12.1, acorn@npm:^8.7.1, acorn@npm:^8.8.2, acorn@npm:^8.9.0":
- version: 8.12.1
- resolution: "acorn@npm:8.12.1"
- bin:
- acorn: bin/acorn
- checksum: 10c0/51fb26cd678f914e13287e886da2d7021f8c2bc0ccc95e03d3e0447ee278dd3b40b9c57dc222acd5881adcf26f3edc40901a4953403232129e3876793cd17386
- languageName: node
- linkType: hard
-
"adjust-sourcemap-loader@npm:^4.0.0":
version: 4.0.0
resolution: "adjust-sourcemap-loader@npm:4.0.0"
@@ -6791,13 +6839,6 @@ __metadata:
languageName: node
linkType: hard
-"asynckit@npm:^0.4.0":
- version: 0.4.0
- resolution: "asynckit@npm:0.4.0"
- checksum: 10c0/d73e2ddf20c4eb9337e1b3df1a0f6159481050a5de457c55b14ea2e5cb6d90bb69e004c9af54737a5ee0917fcf2c9e25de67777bbe58261847846066ba75bc9d
- languageName: node
- linkType: hard
-
"atomic-sleep@npm:^1.0.0":
version: 1.0.0
resolution: "atomic-sleep@npm:1.0.0"
@@ -6821,17 +6862,6 @@ __metadata:
languageName: node
linkType: hard
-"axios@npm:1.4.0":
- version: 1.4.0
- resolution: "axios@npm:1.4.0"
- dependencies:
- follow-redirects: "npm:^1.15.0"
- form-data: "npm:^4.0.0"
- proxy-from-env: "npm:^1.1.0"
- checksum: 10c0/a925a07590b0ec1d4daf28cd27890f930daab980371558deb3b883af174b881da09e5ba2cb8393a648fda5859e39934982d0b8b092fe89fc84cb6c80a70a1910
- languageName: node
- linkType: hard
-
"axobject-query@npm:^4.1.0":
version: 4.1.0
resolution: "axobject-query@npm:4.1.0"
@@ -7221,12 +7251,10 @@ __metadata:
languageName: node
linkType: hard
-"bson@npm:^4.7.2":
- version: 4.7.2
- resolution: "bson@npm:4.7.2"
- dependencies:
- buffer: "npm:^5.6.0"
- checksum: 10c0/ce97286239f1cc8bbc61214cee5f6a64a306a1a0c6b529b80993205738cd0287931cd09a396213ea358f886bbad6b304ca8faf8519ea73726eb467f1750f3d6f
+"bson@npm:^6.7.0":
+ version: 6.10.0
+ resolution: "bson@npm:6.10.0"
+ checksum: 10c0/1447b08cc4910cc1d1b55642184fa13d06bc2b454280d09431082a8293b83854971821129d4925b22f5e2b49e08cdc1ac958a0193cfbad9efb2381ad3d86f242
languageName: node
linkType: hard
@@ -7265,7 +7293,7 @@ __metadata:
languageName: node
linkType: hard
-"buffer@npm:^5.5.0, buffer@npm:^5.6.0":
+"buffer@npm:^5.5.0":
version: 5.7.1
resolution: "buffer@npm:5.7.1"
dependencies:
@@ -7394,6 +7422,13 @@ __metadata:
languageName: node
linkType: hard
+"ccount@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "ccount@npm:2.0.1"
+ checksum: 10c0/3939b1664390174484322bc3f45b798462e6c07ee6384cb3d645e0aa2f318502d174845198c1561930e1d431087f74cf1fe291ae9a4722821a9f4ba67e574350
+ languageName: node
+ linkType: hard
+
"chai@npm:^4.3.10":
version: 4.5.0
resolution: "chai@npm:4.5.0"
@@ -7440,6 +7475,34 @@ __metadata:
languageName: node
linkType: hard
+"character-entities-html4@npm:^2.0.0":
+ version: 2.1.0
+ resolution: "character-entities-html4@npm:2.1.0"
+ checksum: 10c0/fe61b553f083400c20c0b0fd65095df30a0b445d960f3bbf271536ae6c3ba676f39cb7af0b4bf2755812f08ab9b88f2feed68f9aebb73bb153f7a115fe5c6e40
+ languageName: node
+ linkType: hard
+
+"character-entities-legacy@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "character-entities-legacy@npm:3.0.0"
+ checksum: 10c0/ec4b430af873661aa754a896a2b55af089b4e938d3d010fad5219299a6b6d32ab175142699ee250640678cd64bdecd6db3c9af0b8759ab7b155d970d84c4c7d1
+ languageName: node
+ linkType: hard
+
+"character-entities@npm:^2.0.0":
+ version: 2.0.2
+ resolution: "character-entities@npm:2.0.2"
+ checksum: 10c0/b0c645a45bcc90ff24f0e0140f4875a8436b8ef13b6bcd31ec02cfb2ca502b680362aa95386f7815bdc04b6464d48cf191210b3840d7c04241a149ede591a308
+ languageName: node
+ linkType: hard
+
+"character-reference-invalid@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "character-reference-invalid@npm:2.0.1"
+ checksum: 10c0/2ae0dec770cd8659d7e8b0ce24392d83b4c2f0eb4a3395c955dce5528edd4cc030a794cfa06600fcdd700b3f2de2f9b8e40e309c0011c4180e3be64a0b42e6a1
+ languageName: node
+ linkType: hard
+
"charenc@npm:0.0.2":
version: 0.0.2
resolution: "charenc@npm:0.0.2"
@@ -7574,7 +7637,7 @@ __metadata:
languageName: node
linkType: hard
-"classnames@npm:^2.2.5, classnames@npm:^2.3.1, classnames@npm:^2.5.1":
+"classnames@npm:^2.3.1, classnames@npm:^2.5.1":
version: 2.5.1
resolution: "classnames@npm:2.5.1"
checksum: 10c0/afff4f77e62cea2d79c39962980bf316bacb0d7c49e13a21adaadb9221e1c6b9d3cdb829d8bb1b23c406f4e740507f37e1dcf506f7e3b7113d17c5bab787aa69
@@ -7713,22 +7776,6 @@ __metadata:
languageName: node
linkType: hard
-"combined-stream@npm:^1.0.8":
- version: 1.0.8
- resolution: "combined-stream@npm:1.0.8"
- dependencies:
- delayed-stream: "npm:~1.0.0"
- checksum: 10c0/0dbb829577e1b1e839fa82b40c07ffaf7de8a09b935cadd355a73652ae70a88b4320db322f6634a4ad93424292fa80973ac6480986247f1734a1137debf271d5
- languageName: node
- linkType: hard
-
-"commander@npm:^10.0.0":
- version: 10.0.1
- resolution: "commander@npm:10.0.1"
- checksum: 10c0/53f33d8927758a911094adadda4b2cbac111a5b377d8706700587650fd8f45b0bbe336de4b5c3fe47fd61f420a3d9bd452b6e0e6e5600a7e74d7bf0174f6efe3
- languageName: node
- linkType: hard
-
"commander@npm:^2.20.0, commander@npm:^2.20.3":
version: 2.20.3
resolution: "commander@npm:2.20.3"
@@ -7771,17 +7818,6 @@ __metadata:
languageName: node
linkType: hard
-"condense-newlines@npm:^0.2.1":
- version: 0.2.1
- resolution: "condense-newlines@npm:0.2.1"
- dependencies:
- extend-shallow: "npm:^2.0.1"
- is-whitespace: "npm:^0.3.0"
- kind-of: "npm:^3.0.2"
- checksum: 10c0/19485db92a5d4658b50ab250626ece0cebe57f73af126b348604309894ed9a2b05f88f1802a090fd1897156eda0af69d8f14446bc62f978e0d048b5135e91694
- languageName: node
- linkType: hard
-
"confbox@npm:^0.1.7":
version: 0.1.7
resolution: "confbox@npm:0.1.7"
@@ -7789,16 +7825,6 @@ __metadata:
languageName: node
linkType: hard
-"config-chain@npm:^1.1.13":
- version: 1.1.13
- resolution: "config-chain@npm:1.1.13"
- dependencies:
- ini: "npm:^1.3.4"
- proto-list: "npm:~1.2.1"
- checksum: 10c0/39d1df18739d7088736cc75695e98d7087aea43646351b028dfabd5508d79cf6ef4c5bcd90471f52cd87ae470d1c5490c0a8c1a292fbe6ee9ff688061ea0963e
- languageName: node
- linkType: hard
-
"consola@npm:^3.2.3":
version: 3.2.3
resolution: "consola@npm:3.2.3"
@@ -8167,10 +8193,10 @@ __metadata:
languageName: node
linkType: hard
-"date-fns@npm:3.3.1":
- version: 3.3.1
- resolution: "date-fns@npm:3.3.1"
- checksum: 10c0/e04ff79244010e03b912d791cd3250af5f18866ce868604958d76bd87e5fb0b79f0a810b8e7066248452b41779b288c4fd21de1cac2cd4b6d384e9dd931c9674
+"date-fns@npm:4.1.0":
+ version: 4.1.0
+ resolution: "date-fns@npm:4.1.0"
+ checksum: 10c0/b79ff32830e6b7faa009590af6ae0fb8c3fd9ffad46d930548fbb5acf473773b4712ae887e156ba91a7b3dc30591ce0f517d69fd83bd9c38650fdc03b4e0bac8
languageName: node
linkType: hard
@@ -8218,6 +8244,27 @@ __metadata:
languageName: node
linkType: hard
+"debug@npm:^4.0.0":
+ version: 4.3.7
+ resolution: "debug@npm:4.3.7"
+ dependencies:
+ ms: "npm:^2.1.3"
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ checksum: 10c0/1471db19c3b06d485a622d62f65947a19a23fbd0dd73f7fd3eafb697eec5360cde447fb075919987899b1a2096e85d35d4eb5a4de09a57600ac9cf7e6c8e768b
+ languageName: node
+ linkType: hard
+
+"decode-named-character-reference@npm:^1.0.0":
+ version: 1.0.2
+ resolution: "decode-named-character-reference@npm:1.0.2"
+ dependencies:
+ character-entities: "npm:^2.0.0"
+ checksum: 10c0/66a9fc5d9b5385a2b3675c69ba0d8e893393d64057f7dbbb585265bb4fc05ec513d76943b8e5aac7d8016d20eea4499322cbf4cd6d54b466976b78f3a7587a4c
+ languageName: node
+ linkType: hard
+
"decompress-response@npm:^6.0.0":
version: 6.0.0
resolution: "decompress-response@npm:6.0.0"
@@ -8335,13 +8382,6 @@ __metadata:
languageName: node
linkType: hard
-"delayed-stream@npm:~1.0.0":
- version: 1.0.0
- resolution: "delayed-stream@npm:1.0.0"
- checksum: 10c0/d758899da03392e6712f042bec80aa293bbe9e9ff1b2634baae6a360113e708b91326594c8a486d475c69d6259afb7efacdc3537bfcda1c6c648e390ce601b19
- languageName: node
- linkType: hard
-
"depd@npm:2.0.0":
version: 2.0.0
resolution: "depd@npm:2.0.0"
@@ -8349,7 +8389,7 @@ __metadata:
languageName: node
linkType: hard
-"dequal@npm:2.0.3, dequal@npm:^2.0.2, dequal@npm:^2.0.3":
+"dequal@npm:2.0.3, dequal@npm:^2.0.0, dequal@npm:^2.0.2, dequal@npm:^2.0.3":
version: 2.0.3
resolution: "dequal@npm:2.0.3"
checksum: 10c0/f98860cdf58b64991ae10205137c0e97d384c3a4edc7f807603887b7c4b850af1224a33d88012009f150861cbee4fa2d322c4cc04b9313bee312e47f6ecaa888
@@ -8387,6 +8427,15 @@ __metadata:
languageName: node
linkType: hard
+"devlop@npm:^1.0.0, devlop@npm:^1.1.0":
+ version: 1.1.0
+ resolution: "devlop@npm:1.1.0"
+ dependencies:
+ dequal: "npm:^2.0.0"
+ checksum: 10c0/e0928ab8f94c59417a2b8389c45c55ce0a02d9ac7fd74ef62d01ba48060129e1d594501b77de01f3eeafc7cb00773819b0df74d96251cf20b31c5b3071f45c0e
+ languageName: node
+ linkType: hard
+
"diff-sequences@npm:^29.6.3":
version: 29.6.3
resolution: "diff-sequences@npm:29.6.3"
@@ -8483,17 +8532,6 @@ __metadata:
languageName: node
linkType: hard
-"dom-serializer@npm:^2.0.0":
- version: 2.0.0
- resolution: "dom-serializer@npm:2.0.0"
- dependencies:
- domelementtype: "npm:^2.3.0"
- domhandler: "npm:^5.0.2"
- entities: "npm:^4.2.0"
- checksum: 10c0/d5ae2b7110ca3746b3643d3ef60ef823f5f078667baf530cec096433f1627ec4b6fa8c072f09d079d7cda915fd2c7bc1b7b935681e9b09e591e1e15f4040b8e2
- languageName: node
- linkType: hard
-
"domain-browser@npm:^4.22.0":
version: 4.23.0
resolution: "domain-browser@npm:4.23.0"
@@ -8501,7 +8539,7 @@ __metadata:
languageName: node
linkType: hard
-"domelementtype@npm:^2.0.1, domelementtype@npm:^2.2.0, domelementtype@npm:^2.3.0":
+"domelementtype@npm:^2.0.1, domelementtype@npm:^2.2.0":
version: 2.3.0
resolution: "domelementtype@npm:2.3.0"
checksum: 10c0/686f5a9ef0fff078c1412c05db73a0dce096190036f33e400a07e2a4518e9f56b1e324f5c576a0a747ef0e75b5d985c040b0d51945ce780c0dd3c625a18cd8c9
@@ -8517,15 +8555,6 @@ __metadata:
languageName: node
linkType: hard
-"domhandler@npm:^5.0.2, domhandler@npm:^5.0.3":
- version: 5.0.3
- resolution: "domhandler@npm:5.0.3"
- dependencies:
- domelementtype: "npm:^2.3.0"
- checksum: 10c0/bba1e5932b3e196ad6862286d76adc89a0dbf0c773e5ced1eb01f9af930c50093a084eff14b8de5ea60b895c56a04d5de8bbc4930c5543d029091916770b2d2a
- languageName: node
- linkType: hard
-
"domutils@npm:^2.5.2, domutils@npm:^2.8.0":
version: 2.8.0
resolution: "domutils@npm:2.8.0"
@@ -8537,17 +8566,6 @@ __metadata:
languageName: node
linkType: hard
-"domutils@npm:^3.0.1":
- version: 3.1.0
- resolution: "domutils@npm:3.1.0"
- dependencies:
- dom-serializer: "npm:^2.0.0"
- domelementtype: "npm:^2.3.0"
- domhandler: "npm:^5.0.3"
- checksum: 10c0/342d64cf4d07b8a0573fb51e0a6312a88fb520c7fefd751870bf72fa5fc0f2e0cb9a3958a573610b1d608c6e2a69b8e9b4b40f0bfb8f87a71bce4f180cca1887
- languageName: node
- linkType: hard
-
"dot-case@npm:^3.0.4":
version: 3.0.4
resolution: "dot-case@npm:3.0.4"
@@ -8563,10 +8581,10 @@ __metadata:
resolution: "drei-koenige-v3@workspace:."
dependencies:
"@chromatic-com/storybook": "npm:^1.6.1"
- "@payloadcms/db-mongodb": "npm:beta"
- "@payloadcms/next": "npm:beta"
- "@payloadcms/plugin-cloud": "npm:beta"
- "@payloadcms/richtext-lexical": "npm:beta"
+ "@payloadcms/db-mongodb": "npm:^3.2.1"
+ "@payloadcms/next": "npm:^3.2.1"
+ "@payloadcms/plugin-cloud": "npm:^3.0.2"
+ "@payloadcms/richtext-lexical": "npm:^3.2.1"
"@storybook/addon-essentials": "npm:^8.2.9"
"@storybook/addon-interactions": "npm:^8.2.9"
"@storybook/addon-links": "npm:^8.2.9"
@@ -8590,7 +8608,7 @@ __metadata:
graphql: "npm:^16.8.1"
mapbox-gl: "npm:^3.5.2"
next: "npm:15.0.0"
- payload: "npm:beta"
+ payload: "npm:^3.2.1"
qs-esm: "npm:^7.0.2"
react: "npm:19.0.0-rc-65a56d0e-20241020"
react-dom: "npm:19.0.0-rc-65a56d0e-20241020"
@@ -8614,20 +8632,6 @@ __metadata:
languageName: node
linkType: hard
-"editorconfig@npm:^1.0.4":
- version: 1.0.4
- resolution: "editorconfig@npm:1.0.4"
- dependencies:
- "@one-ini/wasm": "npm:0.1.1"
- commander: "npm:^10.0.0"
- minimatch: "npm:9.0.1"
- semver: "npm:^7.5.3"
- bin:
- editorconfig: bin/editorconfig
- checksum: 10c0/ed6985959d7b34a56e1c09bef118758c81c969489b768d152c93689fce8403b0452462e934f665febaba3478eebc0fd41c0a36100783eaadf6d926c4abc87a3d
- languageName: node
- linkType: hard
-
"ee-first@npm:1.1.1":
version: 1.1.1
resolution: "ee-first@npm:1.1.1"
@@ -8731,13 +8735,6 @@ __metadata:
languageName: node
linkType: hard
-"entities@npm:^4.2.0, entities@npm:^4.4.0":
- version: 4.5.0
- resolution: "entities@npm:4.5.0"
- checksum: 10c0/5b039739f7621f5d1ad996715e53d964035f75ad3b9a4d38c6b3804bb226e282ffeae2443624d8fdd9c47d8e926ae9ac009c54671243f0c3294c26af7cc85250
- languageName: node
- linkType: hard
-
"env-paths@npm:^2.2.0, env-paths@npm:^2.2.1":
version: 2.2.1
resolution: "env-paths@npm:2.2.1"
@@ -9478,6 +9475,23 @@ __metadata:
languageName: node
linkType: hard
+"estree-util-is-identifier-name@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "estree-util-is-identifier-name@npm:3.0.0"
+ checksum: 10c0/d1881c6ed14bd588ebd508fc90bf2a541811dbb9ca04dec2f39d27dcaa635f85b5ed9bbbe7fc6fb1ddfca68744a5f7c70456b4b7108b6c4c52780631cc787c5b
+ languageName: node
+ linkType: hard
+
+"estree-util-visit@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "estree-util-visit@npm:2.0.0"
+ dependencies:
+ "@types/estree-jsx": "npm:^1.0.0"
+ "@types/unist": "npm:^3.0.0"
+ checksum: 10c0/acda8b03cc8f890d79c7c7361f6c95331ba84b7ccc0c32b49f447fc30206b20002b37ffdfc97b6ad16e6fe065c63ecbae1622492e2b6b4775c15966606217f39
+ languageName: node
+ linkType: hard
+
"estree-walker@npm:^3.0.3":
version: 3.0.3
resolution: "estree-walker@npm:3.0.3"
@@ -9656,15 +9670,6 @@ __metadata:
languageName: node
linkType: hard
-"extend-shallow@npm:^2.0.1":
- version: 2.0.1
- resolution: "extend-shallow@npm:2.0.1"
- dependencies:
- is-extendable: "npm:^0.1.0"
- checksum: 10c0/ee1cb0a18c9faddb42d791b2d64867bd6cfd0f3affb711782eb6e894dd193e2934a7f529426aac7c8ddb31ac5d38000a00aa2caf08aa3dfc3e1c8ff6ba340bd9
- languageName: node
- linkType: hard
-
"fast-base64-decode@npm:^1.0.0":
version: 1.0.0
resolution: "fast-base64-decode@npm:1.0.0"
@@ -10017,16 +10022,6 @@ __metadata:
languageName: node
linkType: hard
-"follow-redirects@npm:^1.15.0":
- version: 1.15.8
- resolution: "follow-redirects@npm:1.15.8"
- peerDependenciesMeta:
- debug:
- optional: true
- checksum: 10c0/ffb8f71338000717f6bfefddc3247dda226326f29fdafb9ef32ef67176339a1ae13c419aea837645b58331f94eba6168704149f4d10a8a976687efd2e45131d2
- languageName: node
- linkType: hard
-
"for-each@npm:^0.3.3":
version: 0.3.3
resolution: "for-each@npm:0.3.3"
@@ -10069,17 +10064,6 @@ __metadata:
languageName: node
linkType: hard
-"form-data@npm:^4.0.0":
- version: 4.0.0
- resolution: "form-data@npm:4.0.0"
- dependencies:
- asynckit: "npm:^0.4.0"
- combined-stream: "npm:^1.0.8"
- mime-types: "npm:^2.1.12"
- checksum: 10c0/cb6f3ac49180be03ff07ba3ff125f9eba2ff0b277fb33c7fc47569fc5e616882c5b1c69b9904c4c4187e97dd0419dd03b134174756f296dec62041e6527e2c6e
- languageName: node
- linkType: hard
-
"forwarded@npm:0.2.0":
version: 0.2.0
resolution: "forwarded@npm:0.2.0"
@@ -10357,7 +10341,7 @@ __metadata:
languageName: node
linkType: hard
-"glob@npm:^10.2.2, glob@npm:^10.3.10, glob@npm:^10.3.3":
+"glob@npm:^10.2.2, glob@npm:^10.3.10":
version: 10.4.5
resolution: "glob@npm:10.4.5"
dependencies:
@@ -10713,19 +10697,6 @@ __metadata:
languageName: node
linkType: hard
-"html-to-text@npm:9.0.3":
- version: 9.0.3
- resolution: "html-to-text@npm:9.0.3"
- dependencies:
- "@selderee/plugin-htmlparser2": "npm:^0.10.0"
- deepmerge: "npm:^4.2.2"
- dom-serializer: "npm:^2.0.0"
- htmlparser2: "npm:^8.0.1"
- selderee: "npm:^0.10.0"
- checksum: 10c0/524a97f545efc67f8aa606ad92947e3984a3498f6ba7f42a7932aae89a1fb7fa35036d569b7561d8b7ceb962888a5b7e190d7f50ac04ba01e9189f35d728b926
- languageName: node
- linkType: hard
-
"html-webpack-plugin@npm:^5.5.0":
version: 5.6.0
resolution: "html-webpack-plugin@npm:5.6.0"
@@ -10759,18 +10730,6 @@ __metadata:
languageName: node
linkType: hard
-"htmlparser2@npm:^8.0.1":
- version: 8.0.2
- resolution: "htmlparser2@npm:8.0.2"
- dependencies:
- domelementtype: "npm:^2.3.0"
- domhandler: "npm:^5.0.3"
- domutils: "npm:^3.0.1"
- entities: "npm:^4.4.0"
- checksum: 10c0/609cca85886d0bf2c9a5db8c6926a89f3764596877492e2caa7a25a789af4065bc6ee2cdc81807fe6b1d03a87bf8a373b5a754528a4cc05146b713c20575aab4
- languageName: node
- linkType: hard
-
"http-cache-semantics@npm:^4.0.0, http-cache-semantics@npm:^4.1.1":
version: 4.1.1
resolution: "http-cache-semantics@npm:4.1.1"
@@ -10949,7 +10908,7 @@ __metadata:
languageName: node
linkType: hard
-"ini@npm:^1.3.4, ini@npm:~1.3.0":
+"ini@npm:~1.3.0":
version: 1.3.8
resolution: "ini@npm:1.3.8"
checksum: 10c0/ec93838d2328b619532e4f1ff05df7909760b6f66d9c9e2ded11e5c1897d6f2f9980c54dd638f88654b00919ce31e827040631eab0a3969e4d1abefa0719516a
@@ -10991,6 +10950,23 @@ __metadata:
languageName: node
linkType: hard
+"is-alphabetical@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "is-alphabetical@npm:2.0.1"
+ checksum: 10c0/932367456f17237533fd1fc9fe179df77957271020b83ea31da50e5cc472d35ef6b5fb8147453274ffd251134472ce24eb6f8d8398d96dee98237cdb81a6c9a7
+ languageName: node
+ linkType: hard
+
+"is-alphanumerical@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "is-alphanumerical@npm:2.0.1"
+ dependencies:
+ is-alphabetical: "npm:^2.0.0"
+ is-decimal: "npm:^2.0.0"
+ checksum: 10c0/4b35c42b18e40d41378293f82a3ecd9de77049b476f748db5697c297f686e1e05b072a6aaae2d16f54d2a57f85b00cbbe755c75f6d583d1c77d6657bd0feb5a2
+ languageName: node
+ linkType: hard
+
"is-arguments@npm:^1.0.4, is-arguments@npm:^1.1.1":
version: 1.1.1
resolution: "is-arguments@npm:1.1.1"
@@ -11062,7 +11038,7 @@ __metadata:
languageName: node
linkType: hard
-"is-buffer@npm:^1.1.5, is-buffer@npm:~1.1.6":
+"is-buffer@npm:~1.1.6":
version: 1.1.6
resolution: "is-buffer@npm:1.1.6"
checksum: 10c0/ae18aa0b6e113d6c490ad1db5e8df9bdb57758382b313f5a22c9c61084875c6396d50bbf49315f5b1926d142d74dfb8d31b40d993a383e0a158b15fea7a82234
@@ -11112,10 +11088,10 @@ __metadata:
languageName: node
linkType: hard
-"is-extendable@npm:^0.1.0":
- version: 0.1.1
- resolution: "is-extendable@npm:0.1.1"
- checksum: 10c0/dd5ca3994a28e1740d1e25192e66eed128e0b2ff161a7ea348e87ae4f616554b486854de423877a2a2c171d5f7cd6e8093b91f54533bc88a59ee1c9838c43879
+"is-decimal@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "is-decimal@npm:2.0.1"
+ checksum: 10c0/8085dd66f7d82f9de818fba48b9e9c0429cb4291824e6c5f2622e96b9680b54a07a624cfc663b24148b8e853c62a1c987cfe8b0b5a13f5156991afaf6736e334
languageName: node
linkType: hard
@@ -11160,6 +11136,13 @@ __metadata:
languageName: node
linkType: hard
+"is-hexadecimal@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "is-hexadecimal@npm:2.0.1"
+ checksum: 10c0/3eb60fe2f1e2bbc760b927dcad4d51eaa0c60138cf7fc671803f66353ad90c301605b502c7ea4c6bb0548e1c7e79dfd37b73b632652e3b76030bba603a7e9626
+ languageName: node
+ linkType: hard
+
"is-interactive@npm:^1.0.0":
version: 1.0.0
resolution: "is-interactive@npm:1.0.0"
@@ -11351,13 +11334,6 @@ __metadata:
languageName: node
linkType: hard
-"is-whitespace@npm:^0.3.0":
- version: 0.3.0
- resolution: "is-whitespace@npm:0.3.0"
- checksum: 10c0/2f4ef13e0195170bbb587437133ef81ed9d6aec1c5e88f4c2b9055a18a1e70f75d9a9376f0cdae64f3c519e05e5f734d6b8f9682e5cb50384843480bade785ae
- languageName: node
- linkType: hard
-
"isarray@npm:^1.0.0, isarray@npm:~1.0.0":
version: 1.0.0
resolution: "isarray@npm:1.0.0"
@@ -11463,23 +11439,6 @@ __metadata:
languageName: node
linkType: hard
-"js-beautify@npm:^1.6.12":
- version: 1.15.1
- resolution: "js-beautify@npm:1.15.1"
- dependencies:
- config-chain: "npm:^1.1.13"
- editorconfig: "npm:^1.0.4"
- glob: "npm:^10.3.3"
- js-cookie: "npm:^3.0.5"
- nopt: "npm:^7.2.0"
- bin:
- css-beautify: js/bin/css-beautify.js
- html-beautify: js/bin/html-beautify.js
- js-beautify: js/bin/js-beautify.js
- checksum: 10c0/4140dd95537143eb429b6c8e47e21310f16c032d97a03163c6c7c0502bc663242a5db08d3ad941b87f24a142ce4f9190c556d2340bcd056545326377dfae5362
- languageName: node
- linkType: hard
-
"js-cookie@npm:^2.2.1":
version: 2.2.1
resolution: "js-cookie@npm:2.2.1"
@@ -11487,13 +11446,6 @@ __metadata:
languageName: node
linkType: hard
-"js-cookie@npm:^3.0.5":
- version: 3.0.5
- resolution: "js-cookie@npm:3.0.5"
- checksum: 10c0/04a0e560407b4489daac3a63e231d35f4e86f78bff9d792011391b49c59f721b513411cd75714c418049c8dc9750b20fcddad1ca5a2ca616c3aca4874cce5b3a
- languageName: node
- linkType: hard
-
"js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0":
version: 4.0.0
resolution: "js-tokens@npm:4.0.0"
@@ -11671,10 +11623,10 @@ __metadata:
languageName: node
linkType: hard
-"kareem@npm:2.5.1":
- version: 2.5.1
- resolution: "kareem@npm:2.5.1"
- checksum: 10c0/30c6b9a39556d69108cac7cf7f87ca8c9f79d37ac58f2224e18d5e5b21191bbfbacee2070064f3c887bc00229d88b8bc728bcc98b07306edeaba85880f100b24
+"kareem@npm:2.6.3":
+ version: 2.6.3
+ resolution: "kareem@npm:2.6.3"
+ checksum: 10c0/a5a3e2932cf54a300bf1a9936a2d1695f409066ce213ec3cd26bf788ac20d150edde21877a18b073efa219cab56f0192f710d87d95dde0829ff44666d9b15f76
languageName: node
linkType: hard
@@ -11694,15 +11646,6 @@ __metadata:
languageName: node
linkType: hard
-"kind-of@npm:^3.0.2":
- version: 3.2.2
- resolution: "kind-of@npm:3.2.2"
- dependencies:
- is-buffer: "npm:^1.1.5"
- checksum: 10c0/7e34bc29d4b02c997f92f080de34ebb92033a96736bbb0bb2410e033a7e5ae6571f1fa37b2d7710018f95361473b816c604234197f4f203f9cf149d8ef1574d9
- languageName: node
- linkType: hard
-
"kind-of@npm:^6.0.2":
version: 6.0.3
resolution: "kind-of@npm:6.0.3"
@@ -11740,13 +11683,6 @@ __metadata:
languageName: node
linkType: hard
-"leac@npm:^0.6.0":
- version: 0.6.0
- resolution: "leac@npm:0.6.0"
- checksum: 10c0/5257781e10791ef8462eb1cbe5e48e3cda7692486f2a775265d6f5216cc088960c62f138163b8df0dcf2119d18673bfe7b050d6b41543d92a7b7ac90e4eb1e8b
- languageName: node
- linkType: hard
-
"leven@npm:^3.1.0":
version: 3.1.0
resolution: "leven@npm:3.1.0"
@@ -11871,6 +11807,13 @@ __metadata:
languageName: node
linkType: hard
+"longest-streak@npm:^3.0.0":
+ version: 3.1.0
+ resolution: "longest-streak@npm:3.1.0"
+ checksum: 10c0/7c2f02d0454b52834d1bcedef79c557bd295ee71fdabb02d041ff3aa9da48a90b5df7c0409156dedbc4df9b65da18742652aaea4759d6ece01f08971af6a7eaa
+ languageName: node
+ linkType: hard
+
"loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0":
version: 1.4.0
resolution: "loose-envify@npm:1.4.0"
@@ -12063,6 +12006,82 @@ __metadata:
languageName: node
linkType: hard
+"mdast-util-from-markdown@npm:2.0.2, mdast-util-from-markdown@npm:^2.0.0":
+ version: 2.0.2
+ resolution: "mdast-util-from-markdown@npm:2.0.2"
+ dependencies:
+ "@types/mdast": "npm:^4.0.0"
+ "@types/unist": "npm:^3.0.0"
+ decode-named-character-reference: "npm:^1.0.0"
+ devlop: "npm:^1.0.0"
+ mdast-util-to-string: "npm:^4.0.0"
+ micromark: "npm:^4.0.0"
+ micromark-util-decode-numeric-character-reference: "npm:^2.0.0"
+ micromark-util-decode-string: "npm:^2.0.0"
+ micromark-util-normalize-identifier: "npm:^2.0.0"
+ micromark-util-symbol: "npm:^2.0.0"
+ micromark-util-types: "npm:^2.0.0"
+ unist-util-stringify-position: "npm:^4.0.0"
+ checksum: 10c0/76eb2bd2c6f7a0318087c73376b8af6d7561c1e16654e7667e640f391341096c56142618fd0ff62f6d39e5ab4895898b9789c84cd7cec2874359a437a0e1ff15
+ languageName: node
+ linkType: hard
+
+"mdast-util-mdx-jsx@npm:3.1.3":
+ version: 3.1.3
+ resolution: "mdast-util-mdx-jsx@npm:3.1.3"
+ dependencies:
+ "@types/estree-jsx": "npm:^1.0.0"
+ "@types/hast": "npm:^3.0.0"
+ "@types/mdast": "npm:^4.0.0"
+ "@types/unist": "npm:^3.0.0"
+ ccount: "npm:^2.0.0"
+ devlop: "npm:^1.1.0"
+ mdast-util-from-markdown: "npm:^2.0.0"
+ mdast-util-to-markdown: "npm:^2.0.0"
+ parse-entities: "npm:^4.0.0"
+ stringify-entities: "npm:^4.0.0"
+ unist-util-stringify-position: "npm:^4.0.0"
+ vfile-message: "npm:^4.0.0"
+ checksum: 10c0/1b0b64215efbbbb1ee9ba2a2b3e5f11859dada7dff162949a0d503aefbd75c0308f17d404df126c54acea06d2224905915b2cac2e6c999514c919bd963b8de24
+ languageName: node
+ linkType: hard
+
+"mdast-util-phrasing@npm:^4.0.0":
+ version: 4.1.0
+ resolution: "mdast-util-phrasing@npm:4.1.0"
+ dependencies:
+ "@types/mdast": "npm:^4.0.0"
+ unist-util-is: "npm:^6.0.0"
+ checksum: 10c0/bf6c31d51349aa3d74603d5e5a312f59f3f65662ed16c58017169a5fb0f84ca98578f626c5ee9e4aa3e0a81c996db8717096705521bddb4a0185f98c12c9b42f
+ languageName: node
+ linkType: hard
+
+"mdast-util-to-markdown@npm:^2.0.0":
+ version: 2.1.2
+ resolution: "mdast-util-to-markdown@npm:2.1.2"
+ dependencies:
+ "@types/mdast": "npm:^4.0.0"
+ "@types/unist": "npm:^3.0.0"
+ longest-streak: "npm:^3.0.0"
+ mdast-util-phrasing: "npm:^4.0.0"
+ mdast-util-to-string: "npm:^4.0.0"
+ micromark-util-classify-character: "npm:^2.0.0"
+ micromark-util-decode-string: "npm:^2.0.0"
+ unist-util-visit: "npm:^5.0.0"
+ zwitch: "npm:^2.0.0"
+ checksum: 10c0/4649722a6099f12e797bd8d6469b2b43b44e526b5182862d9c7766a3431caad2c0112929c538a972f214e63c015395e5d3f54bd81d9ac1b16e6d8baaf582f749
+ languageName: node
+ linkType: hard
+
+"mdast-util-to-string@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "mdast-util-to-string@npm:4.0.0"
+ dependencies:
+ "@types/mdast": "npm:^4.0.0"
+ checksum: 10c0/2d3c1af29bf3fe9c20f552ee9685af308002488f3b04b12fa66652c9718f66f41a32f8362aa2d770c3ff464c034860b41715902ada2306bb0a055146cef064d7
+ languageName: node
+ linkType: hard
+
"media-typer@npm:0.3.0":
version: 0.3.0
resolution: "media-typer@npm:0.3.0"
@@ -12130,6 +12149,294 @@ __metadata:
languageName: node
linkType: hard
+"micromark-core-commonmark@npm:^2.0.0":
+ version: 2.0.2
+ resolution: "micromark-core-commonmark@npm:2.0.2"
+ dependencies:
+ decode-named-character-reference: "npm:^1.0.0"
+ devlop: "npm:^1.0.0"
+ micromark-factory-destination: "npm:^2.0.0"
+ micromark-factory-label: "npm:^2.0.0"
+ micromark-factory-space: "npm:^2.0.0"
+ micromark-factory-title: "npm:^2.0.0"
+ micromark-factory-whitespace: "npm:^2.0.0"
+ micromark-util-character: "npm:^2.0.0"
+ micromark-util-chunked: "npm:^2.0.0"
+ micromark-util-classify-character: "npm:^2.0.0"
+ micromark-util-html-tag-name: "npm:^2.0.0"
+ micromark-util-normalize-identifier: "npm:^2.0.0"
+ micromark-util-resolve-all: "npm:^2.0.0"
+ micromark-util-subtokenize: "npm:^2.0.0"
+ micromark-util-symbol: "npm:^2.0.0"
+ micromark-util-types: "npm:^2.0.0"
+ checksum: 10c0/87c7a75cd339189eb6f1d6323037f7d108d1331d953b84fe839b37fd385ee2292b27222327c1ceffda46ba5d5d4dee703482475e5ee8744be40c9e308d8acb77
+ languageName: node
+ linkType: hard
+
+"micromark-extension-mdx-jsx@npm:3.0.1":
+ version: 3.0.1
+ resolution: "micromark-extension-mdx-jsx@npm:3.0.1"
+ dependencies:
+ "@types/acorn": "npm:^4.0.0"
+ "@types/estree": "npm:^1.0.0"
+ devlop: "npm:^1.0.0"
+ estree-util-is-identifier-name: "npm:^3.0.0"
+ micromark-factory-mdx-expression: "npm:^2.0.0"
+ micromark-factory-space: "npm:^2.0.0"
+ micromark-util-character: "npm:^2.0.0"
+ micromark-util-events-to-acorn: "npm:^2.0.0"
+ micromark-util-symbol: "npm:^2.0.0"
+ micromark-util-types: "npm:^2.0.0"
+ vfile-message: "npm:^4.0.0"
+ checksum: 10c0/11e65abd6b57bcf82665469cd1ff238b7cfc4ebb4942a0361df2dc7dd4ab133681b2bcbd4c388dddf6e4db062665d31efeb48cc844ee61c8d8de9d167cc946d8
+ languageName: node
+ linkType: hard
+
+"micromark-factory-destination@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "micromark-factory-destination@npm:2.0.1"
+ dependencies:
+ micromark-util-character: "npm:^2.0.0"
+ micromark-util-symbol: "npm:^2.0.0"
+ micromark-util-types: "npm:^2.0.0"
+ checksum: 10c0/bbafcf869cee5bf511161354cb87d61c142592fbecea051000ff116068dc85216e6d48519d147890b9ea5d7e2864a6341c0c09d9948c203bff624a80a476023c
+ languageName: node
+ linkType: hard
+
+"micromark-factory-label@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "micromark-factory-label@npm:2.0.1"
+ dependencies:
+ devlop: "npm:^1.0.0"
+ micromark-util-character: "npm:^2.0.0"
+ micromark-util-symbol: "npm:^2.0.0"
+ micromark-util-types: "npm:^2.0.0"
+ checksum: 10c0/0137716b4ecb428114165505e94a2f18855c8bbea21b07a8b5ce514b32a595ed789d2b967125718fc44c4197ceaa48f6609d58807a68e778138d2e6b91b824e8
+ languageName: node
+ linkType: hard
+
+"micromark-factory-mdx-expression@npm:^2.0.0":
+ version: 2.0.2
+ resolution: "micromark-factory-mdx-expression@npm:2.0.2"
+ dependencies:
+ "@types/estree": "npm:^1.0.0"
+ devlop: "npm:^1.0.0"
+ micromark-factory-space: "npm:^2.0.0"
+ micromark-util-character: "npm:^2.0.0"
+ micromark-util-events-to-acorn: "npm:^2.0.0"
+ micromark-util-symbol: "npm:^2.0.0"
+ micromark-util-types: "npm:^2.0.0"
+ unist-util-position-from-estree: "npm:^2.0.0"
+ vfile-message: "npm:^4.0.0"
+ checksum: 10c0/87372775ae06478ab754efa058a5e382972f634c14f0afa303111037c30abf733fe65329a7e59cda969266e63f82104d9ed8ff9ada39189eab0651b6540ca64a
+ languageName: node
+ linkType: hard
+
+"micromark-factory-space@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "micromark-factory-space@npm:2.0.1"
+ dependencies:
+ micromark-util-character: "npm:^2.0.0"
+ micromark-util-types: "npm:^2.0.0"
+ checksum: 10c0/f9ed43f1c0652d8d898de0ac2be3f77f776fffe7dd96bdbba1e02d7ce33d3853c6ff5daa52568fc4fa32cdf3a62d86b85ead9b9189f7211e1d69ff2163c450fb
+ languageName: node
+ linkType: hard
+
+"micromark-factory-title@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "micromark-factory-title@npm:2.0.1"
+ dependencies:
+ micromark-factory-space: "npm:^2.0.0"
+ micromark-util-character: "npm:^2.0.0"
+ micromark-util-symbol: "npm:^2.0.0"
+ micromark-util-types: "npm:^2.0.0"
+ checksum: 10c0/e72fad8d6e88823514916890099a5af20b6a9178ccf78e7e5e05f4de99bb8797acb756257d7a3a57a53854cb0086bf8aab15b1a9e9db8982500dd2c9ff5948b6
+ languageName: node
+ linkType: hard
+
+"micromark-factory-whitespace@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "micromark-factory-whitespace@npm:2.0.1"
+ dependencies:
+ micromark-factory-space: "npm:^2.0.0"
+ micromark-util-character: "npm:^2.0.0"
+ micromark-util-symbol: "npm:^2.0.0"
+ micromark-util-types: "npm:^2.0.0"
+ checksum: 10c0/20a1ec58698f24b766510a309b23a10175034fcf1551eaa9da3adcbed3e00cd53d1ebe5f030cf873f76a1cec3c34eb8c50cc227be3344caa9ed25d56cf611224
+ languageName: node
+ linkType: hard
+
+"micromark-util-character@npm:^2.0.0":
+ version: 2.1.1
+ resolution: "micromark-util-character@npm:2.1.1"
+ dependencies:
+ micromark-util-symbol: "npm:^2.0.0"
+ micromark-util-types: "npm:^2.0.0"
+ checksum: 10c0/d3fe7a5e2c4060fc2a076f9ce699c82a2e87190a3946e1e5eea77f563869b504961f5668d9c9c014724db28ac32fa909070ea8b30c3a39bd0483cc6c04cc76a1
+ languageName: node
+ linkType: hard
+
+"micromark-util-chunked@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "micromark-util-chunked@npm:2.0.1"
+ dependencies:
+ micromark-util-symbol: "npm:^2.0.0"
+ checksum: 10c0/b68c0c16fe8106949537bdcfe1be9cf36c0ccd3bc54c4007003cb0984c3750b6cdd0fd77d03f269a3382b85b0de58bde4f6eedbe7ecdf7244759112289b1ab56
+ languageName: node
+ linkType: hard
+
+"micromark-util-classify-character@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "micromark-util-classify-character@npm:2.0.1"
+ dependencies:
+ micromark-util-character: "npm:^2.0.0"
+ micromark-util-symbol: "npm:^2.0.0"
+ micromark-util-types: "npm:^2.0.0"
+ checksum: 10c0/8a02e59304005c475c332f581697e92e8c585bcd45d5d225a66c1c1b14ab5a8062705188c2ccec33cc998d33502514121478b2091feddbc751887fc9c290ed08
+ languageName: node
+ linkType: hard
+
+"micromark-util-combine-extensions@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "micromark-util-combine-extensions@npm:2.0.1"
+ dependencies:
+ micromark-util-chunked: "npm:^2.0.0"
+ micromark-util-types: "npm:^2.0.0"
+ checksum: 10c0/f15e282af24c8372cbb10b9b0b3e2c0aa681fea0ca323a44d6bc537dc1d9382c819c3689f14eaa000118f5a163245358ce6276b2cda9a84439cdb221f5d86ae7
+ languageName: node
+ linkType: hard
+
+"micromark-util-decode-numeric-character-reference@npm:^2.0.0":
+ version: 2.0.2
+ resolution: "micromark-util-decode-numeric-character-reference@npm:2.0.2"
+ dependencies:
+ micromark-util-symbol: "npm:^2.0.0"
+ checksum: 10c0/9c8a9f2c790e5593ffe513901c3a110e9ec8882a08f466da014112a25e5059b51551ca0aeb7ff494657d86eceb2f02ee556c6558b8d66aadc61eae4a240da0df
+ languageName: node
+ linkType: hard
+
+"micromark-util-decode-string@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "micromark-util-decode-string@npm:2.0.1"
+ dependencies:
+ decode-named-character-reference: "npm:^1.0.0"
+ micromark-util-character: "npm:^2.0.0"
+ micromark-util-decode-numeric-character-reference: "npm:^2.0.0"
+ micromark-util-symbol: "npm:^2.0.0"
+ checksum: 10c0/f24d75b2e5310be6e7b6dee532e0d17d3bf46996841d6295f2a9c87a2046fff4ab603c52ab9d7a7a6430a8b787b1574ae895849c603d262d1b22eef71736b5cb
+ languageName: node
+ linkType: hard
+
+"micromark-util-encode@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "micromark-util-encode@npm:2.0.1"
+ checksum: 10c0/b2b29f901093845da8a1bf997ea8b7f5e061ffdba85070dfe14b0197c48fda64ffcf82bfe53c90cf9dc185e69eef8c5d41cae3ba918b96bc279326921b59008a
+ languageName: node
+ linkType: hard
+
+"micromark-util-events-to-acorn@npm:^2.0.0":
+ version: 2.0.2
+ resolution: "micromark-util-events-to-acorn@npm:2.0.2"
+ dependencies:
+ "@types/acorn": "npm:^4.0.0"
+ "@types/estree": "npm:^1.0.0"
+ "@types/unist": "npm:^3.0.0"
+ devlop: "npm:^1.0.0"
+ estree-util-visit: "npm:^2.0.0"
+ micromark-util-symbol: "npm:^2.0.0"
+ micromark-util-types: "npm:^2.0.0"
+ vfile-message: "npm:^4.0.0"
+ checksum: 10c0/2bd2660a49efddb625e6adcabdc3384ae4c50c7a04270737270f4aab53d09e8253e6d2607cd947c4c77f8a9900278915babb240e61fd143dc5bab51d9fd50709
+ languageName: node
+ linkType: hard
+
+"micromark-util-html-tag-name@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "micromark-util-html-tag-name@npm:2.0.1"
+ checksum: 10c0/ae80444db786fde908e9295f19a27a4aa304171852c77414516418650097b8afb401961c9edb09d677b06e97e8370cfa65638dde8438ebd41d60c0a8678b85b9
+ languageName: node
+ linkType: hard
+
+"micromark-util-normalize-identifier@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "micromark-util-normalize-identifier@npm:2.0.1"
+ dependencies:
+ micromark-util-symbol: "npm:^2.0.0"
+ checksum: 10c0/5299265fa360769fc499a89f40142f10a9d4a5c3dd8e6eac8a8ef3c2e4a6570e4c009cf75ea46dce5ee31c01f25587bde2f4a5cc0a935584ae86dd857f2babbd
+ languageName: node
+ linkType: hard
+
+"micromark-util-resolve-all@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "micromark-util-resolve-all@npm:2.0.1"
+ dependencies:
+ micromark-util-types: "npm:^2.0.0"
+ checksum: 10c0/bb6ca28764696bb479dc44a2d5b5fe003e7177aeae1d6b0d43f24cc223bab90234092d9c3ce4a4d2b8df095ccfd820537b10eb96bb7044d635f385d65a4c984a
+ languageName: node
+ linkType: hard
+
+"micromark-util-sanitize-uri@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "micromark-util-sanitize-uri@npm:2.0.1"
+ dependencies:
+ micromark-util-character: "npm:^2.0.0"
+ micromark-util-encode: "npm:^2.0.0"
+ micromark-util-symbol: "npm:^2.0.0"
+ checksum: 10c0/60e92166e1870fd4f1961468c2651013ff760617342918e0e0c3c4e872433aa2e60c1e5a672bfe5d89dc98f742d6b33897585cf86ae002cda23e905a3c02527c
+ languageName: node
+ linkType: hard
+
+"micromark-util-subtokenize@npm:^2.0.0":
+ version: 2.0.3
+ resolution: "micromark-util-subtokenize@npm:2.0.3"
+ dependencies:
+ devlop: "npm:^1.0.0"
+ micromark-util-chunked: "npm:^2.0.0"
+ micromark-util-symbol: "npm:^2.0.0"
+ micromark-util-types: "npm:^2.0.0"
+ checksum: 10c0/75501986ecb02a6f06c0f3e58b584ae3ff3553b520260e8ce27d2db8c79b8888861dd9d3b26e30f5c6084fddd90f96dc3ff551f02c2ac4d669ebe920e483b6d6
+ languageName: node
+ linkType: hard
+
+"micromark-util-symbol@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "micromark-util-symbol@npm:2.0.1"
+ checksum: 10c0/f2d1b207771e573232436618e78c5e46cd4b5c560dd4a6d63863d58018abbf49cb96ec69f7007471e51434c60de3c9268ef2bf46852f26ff4aacd10f9da16fe9
+ languageName: node
+ linkType: hard
+
+"micromark-util-types@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "micromark-util-types@npm:2.0.1"
+ checksum: 10c0/872ec9334bb42afcc91c5bed8b7ee03b75654b36c6f221ab4d2b1bb0299279f00db948bf38ec6bc1ec03d0cf7842c21ab805190bf676157ba587eb0386d38b71
+ languageName: node
+ linkType: hard
+
+"micromark@npm:^4.0.0":
+ version: 4.0.1
+ resolution: "micromark@npm:4.0.1"
+ dependencies:
+ "@types/debug": "npm:^4.0.0"
+ debug: "npm:^4.0.0"
+ decode-named-character-reference: "npm:^1.0.0"
+ devlop: "npm:^1.0.0"
+ micromark-core-commonmark: "npm:^2.0.0"
+ micromark-factory-space: "npm:^2.0.0"
+ micromark-util-character: "npm:^2.0.0"
+ micromark-util-chunked: "npm:^2.0.0"
+ micromark-util-combine-extensions: "npm:^2.0.0"
+ micromark-util-decode-numeric-character-reference: "npm:^2.0.0"
+ micromark-util-encode: "npm:^2.0.0"
+ micromark-util-normalize-identifier: "npm:^2.0.0"
+ micromark-util-resolve-all: "npm:^2.0.0"
+ micromark-util-sanitize-uri: "npm:^2.0.0"
+ micromark-util-subtokenize: "npm:^2.0.0"
+ micromark-util-symbol: "npm:^2.0.0"
+ micromark-util-types: "npm:^2.0.0"
+ checksum: 10c0/b5d950c84664ce209575e5a54946488f0a1e1240d080544e657b65074c9b08208a5315d9db066b93cbc199ec05f68552ba8b09fd5e716c726f4a4712275a7c5c
+ languageName: node
+ linkType: hard
+
"micromatch@npm:^4.0.2, micromatch@npm:^4.0.4":
version: 4.0.8
resolution: "micromatch@npm:4.0.8"
@@ -12166,7 +12473,7 @@ __metadata:
languageName: node
linkType: hard
-"mime-types@npm:^2.1.12, mime-types@npm:^2.1.27, mime-types@npm:^2.1.31, mime-types@npm:~2.1.24, mime-types@npm:~2.1.34":
+"mime-types@npm:^2.1.27, mime-types@npm:^2.1.31, mime-types@npm:~2.1.24, mime-types@npm:~2.1.34":
version: 2.1.35
resolution: "mime-types@npm:2.1.35"
dependencies:
@@ -12233,15 +12540,6 @@ __metadata:
languageName: node
linkType: hard
-"minimatch@npm:9.0.1":
- version: 9.0.1
- resolution: "minimatch@npm:9.0.1"
- dependencies:
- brace-expansion: "npm:^2.0.1"
- checksum: 10c0/aa043eb8822210b39888a5d0d28df0017b365af5add9bd522f180d2a6962de1cbbf1bdeacdb1b17f410dc3336bc8d76fb1d3e814cdc65d00c2f68e01f0010096
- languageName: node
- linkType: hard
-
"minimatch@npm:^3.0.2, minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2":
version: 3.1.2
resolution: "minimatch@npm:3.1.2"
@@ -12379,60 +12677,76 @@ __metadata:
languageName: node
linkType: hard
-"mongodb-connection-string-url@npm:^2.6.0":
- version: 2.6.0
- resolution: "mongodb-connection-string-url@npm:2.6.0"
+"mongodb-connection-string-url@npm:^3.0.0":
+ version: 3.0.1
+ resolution: "mongodb-connection-string-url@npm:3.0.1"
dependencies:
- "@types/whatwg-url": "npm:^8.2.1"
- whatwg-url: "npm:^11.0.0"
- checksum: 10c0/1e26b045063f4b3eb58fe445bfaf4e1ac3b9b9ceebc30c6deef5e769323cadb00e62cbe1d26a15fda457643d40a9ef9a24a94a1e993addb9261d87cad1fbf0ae
+ "@types/whatwg-url": "npm:^11.0.2"
+ whatwg-url: "npm:^13.0.0"
+ checksum: 10c0/758f6fddde603cbe584d77f71216fc333bff18b53a8524291bb9924754de39a36af812905f3295b85ae1b20ed0a0155e8176207d34fe229f9d10c672393b7f4f
languageName: node
linkType: hard
-"mongodb@npm:4.17.1":
- version: 4.17.1
- resolution: "mongodb@npm:4.17.1"
+"mongodb@npm:~6.10.0":
+ version: 6.10.0
+ resolution: "mongodb@npm:6.10.0"
dependencies:
- "@aws-sdk/credential-providers": "npm:^3.186.0"
- "@mongodb-js/saslprep": "npm:^1.1.0"
- bson: "npm:^4.7.2"
- mongodb-connection-string-url: "npm:^2.6.0"
- socks: "npm:^2.7.1"
- dependenciesMeta:
+ "@mongodb-js/saslprep": "npm:^1.1.5"
+ bson: "npm:^6.7.0"
+ mongodb-connection-string-url: "npm:^3.0.0"
+ peerDependencies:
+ "@aws-sdk/credential-providers": ^3.188.0
+ "@mongodb-js/zstd": ^1.1.0
+ gcp-metadata: ^5.2.0
+ kerberos: ^2.0.1
+ mongodb-client-encryption: ">=6.0.0 <7"
+ snappy: ^7.2.2
+ socks: ^2.7.1
+ peerDependenciesMeta:
"@aws-sdk/credential-providers":
optional: true
- "@mongodb-js/saslprep":
+ "@mongodb-js/zstd":
optional: true
- checksum: 10c0/63f5487a54ca8c1c5cbb508383d1977900e4a71bac92c2ec5e0896caf5978ebe3a8bfa4c115bbe602e363a1edf1cce432cf110f0f5d71f3d88a3949fd85090bc
+ gcp-metadata:
+ optional: true
+ kerberos:
+ optional: true
+ mongodb-client-encryption:
+ optional: true
+ snappy:
+ optional: true
+ socks:
+ optional: true
+ checksum: 10c0/8a92b1a5f0a30b88b80d09a0718ecfb18a4a7f7e77c4b2a7047b57babfec6a29ece09dd375a4f528f0712f1282b39e27f194e75d89a3039fbfda4b1c4f7d3095
languageName: node
linkType: hard
-"mongoose-aggregate-paginate-v2@npm:1.0.6":
- version: 1.0.6
- resolution: "mongoose-aggregate-paginate-v2@npm:1.0.6"
- checksum: 10c0/9dd9e4e40059bae4fd66051142aabc4e1279a8b25bdda9e8599e7e59481dcda1bca39f0b0305ac8424a7a5aa347c52e968d5a64471a7befe6f9a0921587b320c
+"mongoose-aggregate-paginate-v2@npm:1.1.2":
+ version: 1.1.2
+ resolution: "mongoose-aggregate-paginate-v2@npm:1.1.2"
+ checksum: 10c0/4e24faf3d0bf5fb3d96e6fe4f5a8339c54eabda271f0d4abb63b4c4c10fd62e195e12b27e786c1e7fdcffc7fd4e23f3d165cbc880caab605cbcd4b301fe78578
languageName: node
linkType: hard
-"mongoose-paginate-v2@npm:1.7.22":
- version: 1.7.22
- resolution: "mongoose-paginate-v2@npm:1.7.22"
- checksum: 10c0/00b8794b7cbf21f3157922f2e52708c51477fd5a739e0fecba3042ec61949739135556f919f56ad6f0ef0270b9434f07b36b549a93192961de1d3c8cd57279bf
+"mongoose-paginate-v2@npm:1.8.5":
+ version: 1.8.5
+ resolution: "mongoose-paginate-v2@npm:1.8.5"
+ checksum: 10c0/02f2c438b278344502efdd54f7a057de899c4f31f1f5f5dccf772afc3b91b341c1539c4b84e929deb58357273bb485279c19466acb83e32db7448109afd40484
languageName: node
linkType: hard
-"mongoose@npm:6.12.3":
- version: 6.12.3
- resolution: "mongoose@npm:6.12.3"
+"mongoose@npm:8.8.1":
+ version: 8.8.1
+ resolution: "mongoose@npm:8.8.1"
dependencies:
- bson: "npm:^4.7.2"
- kareem: "npm:2.5.1"
- mongodb: "npm:4.17.1"
+ bson: "npm:^6.7.0"
+ kareem: "npm:2.6.3"
+ mongodb: "npm:~6.10.0"
mpath: "npm:0.9.0"
- mquery: "npm:4.0.3"
+ mquery: "npm:5.0.0"
ms: "npm:2.1.3"
- sift: "npm:16.0.1"
- checksum: 10c0/5b00eee01601600b11cab8890945c0e24947ddea019efc739f0fc2b8ad1a29a89e267eaff3104b70336d11d11ce033d7a5031f64a976451388de3a34162d8c16
+ sift: "npm:17.1.3"
+ checksum: 10c0/b9888738826025eced38e90a172901148cc58ad475c32d053006eab4945687413cd2681cfbdf917c3902604d30f5545cfc53716bed7ab25fccdd8a2a1565a4ef
languageName: node
linkType: hard
@@ -12443,12 +12757,12 @@ __metadata:
languageName: node
linkType: hard
-"mquery@npm:4.0.3":
- version: 4.0.3
- resolution: "mquery@npm:4.0.3"
+"mquery@npm:5.0.0":
+ version: 5.0.0
+ resolution: "mquery@npm:5.0.0"
dependencies:
debug: "npm:4.x"
- checksum: 10c0/771eb00466f2c1a1342737fa0379d50c21bb6c09545d6fa4488a81c096a62548ec2080d53e5ead57c8e19f7354d3315e2403878abfb5a6bc8f3e732236874374
+ checksum: 10c0/65b8a92d3b23d9bd1a3d149c3cbd09468e5e5b95d6cff73c1ed2d0a3dc8dce7daa538862ca2a477bf99bbb2197b049becb73d9664b0f7c3dd5472fcd5cb34bca
languageName: node
linkType: hard
@@ -12466,7 +12780,7 @@ __metadata:
languageName: node
linkType: hard
-"ms@npm:2.1.3, ms@npm:^2.1.1":
+"ms@npm:2.1.3, ms@npm:^2.1.1, ms@npm:^2.1.3":
version: 2.1.3
resolution: "ms@npm:2.1.3"
checksum: 10c0/d924b57e7312b3b63ad21fc5b3dc0af5e78d61a1fc7cfb5457edaf26326bf62be5307cc87ffb6862ef1c2b33b0233cdb5d4f01c4c958cc0d660948b65a287a48
@@ -12736,14 +13050,14 @@ __metadata:
languageName: node
linkType: hard
-"nodemailer@npm:6.9.10":
- version: 6.9.10
- resolution: "nodemailer@npm:6.9.10"
- checksum: 10c0/a687116fa3dcdc77afa62087a3f7dd6d96c737fb044c4e003a90534ca1eff26ce4ddd2a4ac87bbe19f1ee267bd0d7a7c7e66676178b149a36b41a27e00167546
+"nodemailer@npm:6.9.9":
+ version: 6.9.9
+ resolution: "nodemailer@npm:6.9.9"
+ checksum: 10c0/ba72da4ca8a003921c86f3d132d64d9bb86c1a3d79d248664b3de28f6a7a621f0476273ad7cf3ecc48d3b78a66ae4ec62b7c4c8ab6f07d9ca26d4bad4d08802e
languageName: node
linkType: hard
-"nopt@npm:^7.0.0, nopt@npm:^7.2.0":
+"nopt@npm:^7.0.0":
version: 7.2.1
resolution: "nopt@npm:7.2.1"
dependencies:
@@ -13159,6 +13473,22 @@ __metadata:
languageName: node
linkType: hard
+"parse-entities@npm:^4.0.0":
+ version: 4.0.1
+ resolution: "parse-entities@npm:4.0.1"
+ dependencies:
+ "@types/unist": "npm:^2.0.0"
+ character-entities: "npm:^2.0.0"
+ character-entities-legacy: "npm:^3.0.0"
+ character-reference-invalid: "npm:^2.0.0"
+ decode-named-character-reference: "npm:^1.0.0"
+ is-alphanumerical: "npm:^2.0.0"
+ is-decimal: "npm:^2.0.0"
+ is-hexadecimal: "npm:^2.0.0"
+ checksum: 10c0/9dfa3b0dc43a913c2558c4bd625b1abcc2d6c6b38aa5724b141ed988471977248f7ad234eed57e1bc70b694dd15b0d710a04f66c2f7c096e35abd91962b7d926
+ languageName: node
+ linkType: hard
+
"parse-json@npm:^5.0.0, parse-json@npm:^5.2.0":
version: 5.2.0
resolution: "parse-json@npm:5.2.0"
@@ -13171,16 +13501,6 @@ __metadata:
languageName: node
linkType: hard
-"parseley@npm:^0.11.0":
- version: 0.11.0
- resolution: "parseley@npm:0.11.0"
- dependencies:
- leac: "npm:^0.6.0"
- peberminta: "npm:^0.8.0"
- checksum: 10c0/ec25f79cf6ca7721feb1803f84a7ee152c7ddcde00baefc188093e41b3639b756915527c490b12128cece970e361d31c9027436c1052115e67c4da79e9031446
- languageName: node
- linkType: hard
-
"parseurl@npm:~1.3.3":
version: 1.3.3
resolution: "parseurl@npm:1.3.3"
@@ -13313,13 +13633,13 @@ __metadata:
languageName: node
linkType: hard
-"payload@npm:beta":
- version: 3.0.0-beta.130
- resolution: "payload@npm:3.0.0-beta.130"
+"payload@npm:^3.2.1":
+ version: 3.2.1
+ resolution: "payload@npm:3.2.1"
dependencies:
"@monaco-editor/react": "npm:4.6.0"
"@next/env": "npm:^15.0.0"
- "@payloadcms/translations": "npm:3.0.0-beta.130"
+ "@payloadcms/translations": "npm:3.2.1"
"@types/busboy": "npm:1.5.4"
ajv: "npm:8.17.1"
bson-objectid: "npm:2.0.4"
@@ -13343,11 +13663,12 @@ __metadata:
ts-essentials: "npm:10.0.3"
tsx: "npm:4.19.2"
uuid: "npm:10.0.0"
+ ws: "npm:^8.16.0"
peerDependencies:
graphql: ^16.8.1
bin:
payload: bin.js
- checksum: 10c0/c5bb13687e5bea04af322298ea192d4cf9592fab1f6f4ff7575bd345f525c933557152efd7f301d0cd7a85265c03d5a3bf1a253344709e4c7f35561a9f398158
+ checksum: 10c0/aaa1915da20312f593acbbf5c5e6e9d77cf5bc9f3af4ba32a82924f6a2cf3ed6a534d52636345d51c4bcba817cb9176fd681c4ff3b0bb4fa26a52f34874bf74c
languageName: node
linkType: hard
@@ -13376,13 +13697,6 @@ __metadata:
languageName: node
linkType: hard
-"peberminta@npm:^0.8.0":
- version: 0.8.0
- resolution: "peberminta@npm:0.8.0"
- checksum: 10c0/12e650795c39bc916324005bc9acca954471182492146cdf10dddc6da08229de287e1375201a2f2b53d5a5383be706aad29056470c6b099696b2c4867d673b03
- languageName: node
- linkType: hard
-
"peek-readable@npm:^5.1.3":
version: 5.2.0
resolution: "peek-readable@npm:5.2.0"
@@ -13761,17 +14075,6 @@ __metadata:
languageName: node
linkType: hard
-"pretty@npm:2.0.0":
- version: 2.0.0
- resolution: "pretty@npm:2.0.0"
- dependencies:
- condense-newlines: "npm:^0.2.1"
- extend-shallow: "npm:^2.0.1"
- js-beautify: "npm:^1.6.12"
- checksum: 10c0/2fcd72f331d0afae3893ba88a5c05f6fdd62b059cb309028aa3309fc8a90410d81dfe66ae95677bc6d6d4a68f3cc1a247c13e5872bd35686f99acb33acc51164
- languageName: node
- linkType: hard
-
"prismjs@npm:^1.27.0":
version: 1.29.0
resolution: "prismjs@npm:1.29.0"
@@ -13827,7 +14130,7 @@ __metadata:
languageName: node
linkType: hard
-"prop-types@npm:^15.6.0, prop-types@npm:^15.6.1, prop-types@npm:^15.6.2, prop-types@npm:^15.7.2, prop-types@npm:^15.8.1":
+"prop-types@npm:^15.6.0, prop-types@npm:^15.6.2, prop-types@npm:^15.7.2, prop-types@npm:^15.8.1":
version: 15.8.1
resolution: "prop-types@npm:15.8.1"
dependencies:
@@ -13838,13 +14141,6 @@ __metadata:
languageName: node
linkType: hard
-"proto-list@npm:~1.2.1":
- version: 1.2.4
- resolution: "proto-list@npm:1.2.4"
- checksum: 10c0/b9179f99394ec8a68b8afc817690185f3b03933f7b46ce2e22c1930dc84b60d09f5ad222beab4e59e58c6c039c7f7fcf620397235ef441a356f31f9744010e12
- languageName: node
- linkType: hard
-
"protocol-buffers-schema@npm:^3.3.1":
version: 3.6.0
resolution: "protocol-buffers-schema@npm:3.6.0"
@@ -13862,13 +14158,6 @@ __metadata:
languageName: node
linkType: hard
-"proxy-from-env@npm:^1.1.0":
- version: 1.1.0
- resolution: "proxy-from-env@npm:1.1.0"
- checksum: 10c0/fe7dd8b1bdbbbea18d1459107729c3e4a2243ca870d26d34c2c1bcd3e4425b7bcc5112362df2d93cc7fb9746f6142b5e272fd1cc5c86ddf8580175186f6ad42b
- languageName: node
- linkType: hard
-
"pseudomap@npm:^1.0.2":
version: 1.0.2
resolution: "pseudomap@npm:1.0.2"
@@ -13907,7 +14196,7 @@ __metadata:
languageName: node
linkType: hard
-"punycode@npm:^2.1.0, punycode@npm:^2.1.1":
+"punycode@npm:^2.1.0, punycode@npm:^2.1.1, punycode@npm:^2.3.0":
version: 2.3.1
resolution: "punycode@npm:2.3.1"
checksum: 10c0/14f76a8206bc3464f794fb2e3d3cc665ae416c01893ad7a02b23766eb07159144ee612ad67af5e84fa4479ccfe67678c4feb126b0485651b302babf66f04f9e9
@@ -14042,19 +14331,6 @@ __metadata:
languageName: node
linkType: hard
-"react-animate-height@npm:2.1.2":
- version: 2.1.2
- resolution: "react-animate-height@npm:2.1.2"
- dependencies:
- classnames: "npm:^2.2.5"
- prop-types: "npm:^15.6.1"
- peerDependencies:
- react: ">=15.6.2"
- react-dom: ">=15.6.2"
- checksum: 10c0/3b18b7925e1d651cd9c6992d21c58bfc426b05974c0d46dc0aaca9586fa13a1dde091ff2947684e45df9d4d5d9f0761d6d3d97c1bf34776c1b312f0b145cd81e
- languageName: node
- linkType: hard
-
"react-colorful@npm:^5.1.2":
version: 5.6.1
resolution: "react-colorful@npm:5.6.1"
@@ -14135,18 +14411,6 @@ __metadata:
languageName: node
linkType: hard
-"react-dom@npm:18.2.0":
- version: 18.2.0
- resolution: "react-dom@npm:18.2.0"
- dependencies:
- loose-envify: "npm:^1.1.0"
- scheduler: "npm:^0.23.0"
- peerDependencies:
- react: ^18.2.0
- checksum: 10c0/66dfc5f93e13d0674e78ef41f92ed21dfb80f9c4ac4ac25a4b51046d41d4d2186abc915b897f69d3d0ebbffe6184e7c5876f2af26bfa956f179225d921be713a
- languageName: node
- linkType: hard
-
"react-dom@npm:19.0.0-rc-65a56d0e-20241020":
version: 19.0.0-rc-65a56d0e-20241020
resolution: "react-dom@npm:19.0.0-rc-65a56d0e-20241020"
@@ -14184,14 +14448,14 @@ __metadata:
languageName: node
linkType: hard
-"react-error-boundary@npm:4.0.13":
- version: 4.0.13
- resolution: "react-error-boundary@npm:4.0.13"
+"react-error-boundary@npm:4.1.1":
+ version: 4.1.1
+ resolution: "react-error-boundary@npm:4.1.1"
dependencies:
"@babel/runtime": "npm:^7.12.5"
peerDependencies:
react: ">=16.13.1"
- checksum: 10c0/6f3e0e4d7669f680ccf49c08c9571519c6e31f04dcfc30a765a7136c7e6fbbbe93423dd5a9fce12107f8166e54133e9dd5c2079a00c7a38201ac811f7a28b8e7
+ checksum: 10c0/0faa4236833a5d98844f84180c8f54316b555bb3e1b38b37d59e6edf8baa754c4fad4570155dc49de61558a0e912fb7143554657f9abccf8ccd08fbee1bd7ac4
languageName: node
linkType: hard
@@ -14295,15 +14559,6 @@ __metadata:
languageName: node
linkType: hard
-"react@npm:18.2.0":
- version: 18.2.0
- resolution: "react@npm:18.2.0"
- dependencies:
- loose-envify: "npm:^1.1.0"
- checksum: 10c0/b562d9b569b0cb315e44b48099f7712283d93df36b19a39a67c254c6686479d3980b7f013dc931f4a5a3ae7645eae6386b4aa5eea933baa54ecd0f9acb0902b8
- languageName: node
- linkType: hard
-
"react@npm:19.0.0-rc-65a56d0e-20241020":
version: 19.0.0-rc-65a56d0e-20241020
resolution: "react@npm:19.0.0-rc-65a56d0e-20241020"
@@ -14559,17 +14814,6 @@ __metadata:
languageName: node
linkType: hard
-"resend@npm:^0.17.2":
- version: 0.17.2
- resolution: "resend@npm:0.17.2"
- dependencies:
- "@react-email/render": "npm:0.0.7"
- axios: "npm:1.4.0"
- type-fest: "npm:3.13.0"
- checksum: 10c0/6b6d7989cd74e79b237386b643fe4caf71db59e031ea856c8171ae8b3381742ed5629cf3deec154559e6bb12aba59048a4899f54e99b83cc02a7e02e9f6a1342
- languageName: node
- linkType: hard
-
"resolve-alpn@npm:^1.0.0":
version: 1.2.1
resolution: "resolve-alpn@npm:1.2.1"
@@ -14858,7 +15102,7 @@ __metadata:
languageName: node
linkType: hard
-"scheduler@npm:^0.23.0, scheduler@npm:^0.23.2":
+"scheduler@npm:^0.23.2":
version: 0.23.2
resolution: "scheduler@npm:0.23.2"
dependencies:
@@ -14904,15 +15148,6 @@ __metadata:
languageName: node
linkType: hard
-"selderee@npm:^0.10.0":
- version: 0.10.0
- resolution: "selderee@npm:0.10.0"
- dependencies:
- parseley: "npm:^0.11.0"
- checksum: 10c0/9d54c73139f1ff84d4f773bc8aa9ce529c7f38266470f3fd55e1879cf5f898a292bf02228695fddc5291e08cd832fef92b8d187841d43c609c8cef50d1db3ffa
- languageName: node
- linkType: hard
-
"semver-regex@npm:^4.0.5":
version: 4.0.5
resolution: "semver-regex@npm:4.0.5"
@@ -15196,10 +15431,10 @@ __metadata:
languageName: node
linkType: hard
-"sift@npm:16.0.1":
- version: 16.0.1
- resolution: "sift@npm:16.0.1"
- checksum: 10c0/e3d1a68babf240c2b244687a12a32fa43439e8ec0b1bfa2a93bd0e21c50ed3364f935361a42f3fb850dc1c0fd369bc99bc0a6d15456141717ea29c60d9612289
+"sift@npm:17.1.3":
+ version: 17.1.3
+ resolution: "sift@npm:17.1.3"
+ checksum: 10c0/bb05d1d65cc9b549b402c1366ba1fcf685311808b6d5c2f4fa2f477d7b524218bbf6c99587562d5613d407820a6b5a7cad809f89c3f75c513ff5d8c0e0a0cead
languageName: node
linkType: hard
@@ -15290,7 +15525,7 @@ __metadata:
languageName: node
linkType: hard
-"socks@npm:^2.7.1, socks@npm:^2.8.3":
+"socks@npm:^2.8.3":
version: 2.8.3
resolution: "socks@npm:2.8.3"
dependencies:
@@ -15642,6 +15877,16 @@ __metadata:
languageName: node
linkType: hard
+"stringify-entities@npm:^4.0.0":
+ version: 4.0.4
+ resolution: "stringify-entities@npm:4.0.4"
+ dependencies:
+ character-entities-html4: "npm:^2.0.0"
+ character-entities-legacy: "npm:^3.0.0"
+ checksum: 10c0/537c7e656354192406bdd08157d759cd615724e9d0873602d2c9b2f6a5c0a8d0b1d73a0a08677848105c5eebac6db037b57c0b3a4ec86331117fa7319ed50448
+ languageName: node
+ linkType: hard
+
"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1":
version: 6.0.1
resolution: "strip-ansi@npm:6.0.1"
@@ -16107,12 +16352,12 @@ __metadata:
languageName: node
linkType: hard
-"tr46@npm:^3.0.0":
- version: 3.0.0
- resolution: "tr46@npm:3.0.0"
+"tr46@npm:^4.1.1":
+ version: 4.1.1
+ resolution: "tr46@npm:4.1.1"
dependencies:
- punycode: "npm:^2.1.1"
- checksum: 10c0/cdc47cad3a9d0b6cb293e39ccb1066695ae6fdd39b9e4f351b010835a1f8b4f3a6dc3a55e896b421371187f22b48d7dac1b693de4f6551bdef7b6ab6735dfe3b
+ punycode: "npm:^2.3.0"
+ checksum: 10c0/92085dcf186f56a49ba4124a581d9ae6a5d0cd4878107c34e2e670b9ddc49da85e4950084bb3e75015195cc23f37ae1c02d45064e94dd6018f5e789aa51d93a8
languageName: node
linkType: hard
@@ -16300,13 +16545,6 @@ __metadata:
languageName: node
linkType: hard
-"type-fest@npm:3.13.0":
- version: 3.13.0
- resolution: "type-fest@npm:3.13.0"
- checksum: 10c0/8d3f7ab432685a661b22484d64b4b1083a85c3db3eb01fee25cf4aa558b07bf2d6a42bbd072a4941da43072688f982ebb8b10b9f4444b3cb260d960f4ccf5c5c
- languageName: node
- linkType: hard
-
"type-fest@npm:^0.20.2":
version: 0.20.2
resolution: "type-fest@npm:0.20.2"
@@ -16531,6 +16769,24 @@ __metadata:
languageName: node
linkType: hard
+"unist-util-position-from-estree@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "unist-util-position-from-estree@npm:2.0.0"
+ dependencies:
+ "@types/unist": "npm:^3.0.0"
+ checksum: 10c0/39127bf5f0594e0a76d9241dec4f7aa26323517120ce1edd5ed91c8c1b9df7d6fb18af556e4b6250f1c7368825720ed892e2b6923be5cdc08a9bb16536dc37b3
+ languageName: node
+ linkType: hard
+
+"unist-util-stringify-position@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "unist-util-stringify-position@npm:4.0.0"
+ dependencies:
+ "@types/unist": "npm:^3.0.0"
+ checksum: 10c0/dfe1dbe79ba31f589108cb35e523f14029b6675d741a79dea7e5f3d098785045d556d5650ec6a8338af11e9e78d2a30df12b1ee86529cded1098da3f17ee999e
+ languageName: node
+ linkType: hard
+
"unist-util-visit-parents@npm:^6.0.0":
version: 6.0.1
resolution: "unist-util-visit-parents@npm:6.0.1"
@@ -16702,6 +16958,16 @@ __metadata:
languageName: node
linkType: hard
+"vfile-message@npm:^4.0.0":
+ version: 4.0.2
+ resolution: "vfile-message@npm:4.0.2"
+ dependencies:
+ "@types/unist": "npm:^3.0.0"
+ unist-util-stringify-position: "npm:^4.0.0"
+ checksum: 10c0/07671d239a075f888b78f318bc1d54de02799db4e9dce322474e67c35d75ac4a5ac0aaf37b18801d91c9f8152974ea39678aa72d7198758b07f3ba04fb7d7514
+ languageName: node
+ linkType: hard
+
"vm-browserify@npm:^1.1.2":
version: 1.1.2
resolution: "vm-browserify@npm:1.1.2"
@@ -16839,13 +17105,13 @@ __metadata:
languageName: node
linkType: hard
-"whatwg-url@npm:^11.0.0":
- version: 11.0.0
- resolution: "whatwg-url@npm:11.0.0"
+"whatwg-url@npm:^13.0.0":
+ version: 13.0.0
+ resolution: "whatwg-url@npm:13.0.0"
dependencies:
- tr46: "npm:^3.0.0"
+ tr46: "npm:^4.1.1"
webidl-conversions: "npm:^7.0.0"
- checksum: 10c0/f7ec264976d7c725e0696fcaf9ebe056e14422eacbf92fdbb4462034609cba7d0c85ffa1aab05e9309d42969bcf04632ba5ed3f3882c516d7b093053315bf4c1
+ checksum: 10c0/06b0c1808bb80eaab6582087bd8be594a1947843cbb0ce1a90635841a549a5849dff5be2b28f5b1b596ef70ea4c3df5c599d35b160899d12343334149851e688
languageName: node
linkType: hard
@@ -17072,3 +17338,10 @@ __metadata:
checksum: 10c0/cb287fe5e6acfa82690acb43c283de34e945c571a78a939774f6eaba7c285bacdf6c90fbc16ce530060863984c906d2b4c6ceb069c94d1e0a06d5f2b458e2a92
languageName: node
linkType: hard
+
+"zwitch@npm:^2.0.0":
+ version: 2.0.4
+ resolution: "zwitch@npm:2.0.4"
+ checksum: 10c0/3c7830cdd3378667e058ffdb4cf2bb78ac5711214e2725900873accb23f3dfe5f9e7e5a06dcdc5f29605da976fc45c26d9a13ca334d6eea2245a15e77b8fc06e
+ languageName: node
+ linkType: hard