=> {
- // get recontactDays from product
- const product = await getProductByEnvironmentId(environmentId);
-
- if (!product) {
- throw new Error("Product not found");
- }
-
- let surveys = await getSurveys(environmentId);
-
- // filtered surveys for running and web
- surveys = surveys.filter((survey) => survey.status === "inProgress" && survey.type === "web");
-
- const displays = await getDisplaysByPersonId(person.id);
-
- // filter surveys that meet the displayOption criteria
- surveys = surveys.filter((survey) => {
- if (survey.displayOption === "respondMultiple") {
- return true;
- } else if (survey.displayOption === "displayOnce") {
- return displays.filter((display) => display.surveyId === survey.id).length === 0;
- } else if (survey.displayOption === "displayMultiple") {
- return (
- displays.filter((display) => display.surveyId === survey.id && display.responseId !== null).length ===
- 0
- );
- } else {
- throw Error("Invalid displayOption");
- }
- });
-
- const attributeClasses = await getAttributeClasses(environmentId);
-
- // filter surveys that meet the attributeFilters criteria
- const potentialSurveysWithAttributes = surveys.filter((survey) => {
- const attributeFilters = survey.attributeFilters;
- if (attributeFilters.length === 0) {
- return true;
- }
- // check if meets all attribute filters criterias
- return attributeFilters.every((attributeFilter) => {
- const attributeClassName = attributeClasses.find(
- (attributeClass) => attributeClass.id === attributeFilter.attributeClassId
- )?.name;
- if (!attributeClassName) {
- throw Error("Invalid attribute filter class");
- }
- const personAttributeValue = person.attributes[attributeClassName];
- if (attributeFilter.condition === "equals") {
- return personAttributeValue === attributeFilter.value;
- } else if (attributeFilter.condition === "notEquals") {
- return personAttributeValue !== attributeFilter.value;
- } else {
- throw Error("Invalid attribute filter condition");
- }
- });
- });
-
- const latestDisplay = displays[0];
-
- // filter surveys that meet the recontactDays criteria
- surveys = potentialSurveysWithAttributes.filter((survey) => {
- if (!latestDisplay) {
- return true;
- } else if (survey.recontactDays !== null) {
- const lastDisplaySurvey = displays.filter((display) => display.surveyId === survey.id)[0];
- if (!lastDisplaySurvey) {
- return true;
- }
- return diffInDays(new Date(), new Date(lastDisplaySurvey.createdAt)) >= survey.recontactDays;
- } else if (product.recontactDays !== null) {
- return diffInDays(new Date(), new Date(latestDisplay.createdAt)) >= product.recontactDays;
- } else {
- return true;
- }
- });
-
- return surveys;
-};
diff --git a/packages/lib/surveyState.ts b/packages/lib/surveyState.ts
index 735741b580..8a89fc5615 100644
--- a/packages/lib/surveyState.ts
+++ b/packages/lib/surveyState.ts
@@ -3,7 +3,7 @@ import { TResponseUpdate } from "@formbricks/types/responses";
export class SurveyState {
responseId: string | null = null;
displayId: string | null = null;
- personId: string | null = null;
+ userId: string | null = null;
surveyId: string;
responseAcc: TResponseUpdate = { finished: false, data: {} };
singleUseId: string | null;
@@ -12,10 +12,10 @@ export class SurveyState {
surveyId: string,
singleUseId?: string | null,
responseId?: string | null,
- personId?: string | null
+ userId?: string | null
) {
this.surveyId = surveyId;
- this.personId = personId ?? null;
+ this.userId = userId ?? null;
this.singleUseId = singleUseId ?? null;
this.responseId = responseId ?? null;
}
@@ -36,7 +36,7 @@ export class SurveyState {
this.surveyId,
this.singleUseId ?? undefined,
this.responseId ?? undefined,
- this.personId ?? undefined
+ this.userId ?? undefined
);
copyInstance.responseId = this.responseId;
copyInstance.responseAcc = this.responseAcc;
@@ -60,11 +60,11 @@ export class SurveyState {
}
/**
- * Update the person ID
- * @param id - The person ID
+ * Update the user ID
+ * @param id - The user ID
*/
- updatePersonId(id: string) {
- this.personId = id;
+ updateUserId(id: string) {
+ this.userId = id;
}
/**
diff --git a/packages/lib/tsconfig.json b/packages/lib/tsconfig.json
index b05575e078..87477dd650 100644
--- a/packages/lib/tsconfig.json
+++ b/packages/lib/tsconfig.json
@@ -3,7 +3,7 @@
"include": ["."],
"exclude": ["dist", "build", "node_modules"],
"compilerOptions": {
- "baseUrl": ".",
+ "baseUrl": "packages/lib",
"paths": {
"@/*": ["../../apps/web/*"],
"@prisma/client/*": ["@formbricks/database/client/*"]
diff --git a/packages/lib/utils/validate.ts b/packages/lib/utils/validate.ts
index f3329dd4d6..d0ea4ac6e9 100644
--- a/packages/lib/utils/validate.ts
+++ b/packages/lib/utils/validate.ts
@@ -8,7 +8,7 @@ export const validateInputs = (...pairs: ValidationPair[]): void => {
const inputValidation = schema.safeParse(value);
if (!inputValidation.success) {
- console.error(`Validation failed for ${schema}: ${inputValidation.error.message}`);
+ console.error(`Validation failed for ${JSON.stringify(schema)}: ${inputValidation.error.message}`);
throw new ValidationError("Validation failed");
}
}
diff --git a/packages/n8n-node/package.json b/packages/n8n-node/package.json
index 819837e44d..b0a3174234 100644
--- a/packages/n8n-node/package.json
+++ b/packages/n8n-node/package.json
@@ -44,10 +44,10 @@
]
},
"devDependencies": {
- "@types/express": "^4.17.19",
- "@types/request-promise-native": "~1.0.19",
- "@typescript-eslint/parser": "~6.8",
- "eslint-plugin-n8n-nodes-base": "^1.16.0",
+ "@types/express": "^4.17.21",
+ "@types/request-promise-native": "~1.0.21",
+ "@typescript-eslint/parser": "~6.11",
+ "eslint-plugin-n8n-nodes-base": "^1.16.1",
"gulp": "^4.0.2",
"n8n-core": "legacy",
"n8n-workflow": "legacy"
diff --git a/packages/surveys/package.json b/packages/surveys/package.json
index 9d1e91e49c..5ccfe22136 100644
--- a/packages/surveys/package.json
+++ b/packages/surveys/package.json
@@ -29,11 +29,11 @@
"autoprefixer": "^10.4.16",
"eslint-config-formbricks": "workspace:*",
"postcss": "^8.4.31",
- "preact": "^10.18.1",
- "tailwindcss": "^3.3.3",
- "terser": "^5.22.0",
- "vite": "^4.4.11",
- "vite-plugin-dts": "^3.6.0",
+ "preact": "^10.19.2",
+ "tailwindcss": "^3.3.5",
+ "terser": "^5.24.0",
+ "vite": "^5.0.0",
+ "vite-plugin-dts": "^3.6.3",
"vite-tsconfig-paths": "^4.2.1"
}
}
diff --git a/packages/surveys/src/components/general/ProgressBar.tsx b/packages/surveys/src/components/general/ProgressBar.tsx
index 35fc3e63ed..4677efe226 100644
--- a/packages/surveys/src/components/general/ProgressBar.tsx
+++ b/packages/surveys/src/components/general/ProgressBar.tsx
@@ -1,10 +1,10 @@
-import { TSurveyWithTriggers } from "@formbricks/types/js";
+import { TSurvey } from "@formbricks/types/surveys";
import { useEffect, useState } from "preact/hooks";
import Progress from "./Progress";
import { calculateElementIdx } from "@/lib/utils";
interface ProgressBarProps {
- survey: TSurveyWithTriggers;
+ survey: TSurvey;
questionId: string;
}
@@ -18,7 +18,7 @@ export default function ProgressBar({ survey, questionId }: ProgressBarProps) {
useEffect(() => {
// calculate progress
setProgress(calculateProgress(questionId, survey, progress));
- function calculateProgress(questionId: string, survey: TSurveyWithTriggers, progress: number) {
+ function calculateProgress(questionId: string, survey: TSurvey, progress: number) {
if (survey.questions.length === 0) return 0;
if (questionId === "end") return 1;
let currentQustionIdx = survey.questions.findIndex((e) => e.id === questionId);
diff --git a/packages/surveys/src/components/general/WelcomeCard.tsx b/packages/surveys/src/components/general/WelcomeCard.tsx
index db7cedda67..e0005259c7 100644
--- a/packages/surveys/src/components/general/WelcomeCard.tsx
+++ b/packages/surveys/src/components/general/WelcomeCard.tsx
@@ -1,6 +1,6 @@
import SubmitButton from "@/components/buttons/SubmitButton";
import { calculateElementIdx } from "@/lib/utils";
-import { TSurveyWithTriggers } from "@formbricks/types/js";
+import { TSurvey } from "@formbricks/types/surveys";
import Headline from "./Headline";
import HtmlBody from "./HtmlBody";
@@ -11,7 +11,7 @@ interface WelcomeCardProps {
buttonLabel?: string;
timeToFinish?: boolean;
onSubmit: (data: { [x: string]: any }) => void;
- survey: TSurveyWithTriggers;
+ survey: TSurvey;
}
const TimerIcon = () => {
diff --git a/packages/surveys/src/components/wrappers/AutoCloseWrapper.tsx b/packages/surveys/src/components/wrappers/AutoCloseWrapper.tsx
index 3847b9e186..1b7ad52a8c 100644
--- a/packages/surveys/src/components/wrappers/AutoCloseWrapper.tsx
+++ b/packages/surveys/src/components/wrappers/AutoCloseWrapper.tsx
@@ -1,9 +1,9 @@
-import { TSurveyWithTriggers } from "@formbricks/types/js";
+import { TSurvey } from "@formbricks/types/surveys";
import { useEffect, useRef, useState } from "preact/hooks";
import Progress from "../general/Progress";
interface AutoCloseProps {
- survey: TSurveyWithTriggers;
+ survey: TSurvey;
onClose: () => void;
children: any;
}
diff --git a/packages/surveys/src/components/wrappers/Modal.tsx b/packages/surveys/src/components/wrappers/Modal.tsx
index a00cec4ff3..b73497ef14 100644
--- a/packages/surveys/src/components/wrappers/Modal.tsx
+++ b/packages/surveys/src/components/wrappers/Modal.tsx
@@ -101,7 +101,7 @@ export default function Modal({
className={cn(
getPlacementStyle(placement),
show ? "opacity-100" : "opacity-0",
- "pointer-events-auto absolute bottom-0 h-fit w-full overflow-hidden rounded-lg bg-white shadow-lg ring-1 ring-black ring-opacity-5 transition-all duration-500 ease-in-out sm:m-4 sm:max-w-sm"
+ "border-border pointer-events-auto absolute bottom-0 h-fit w-full overflow-hidden rounded-lg border bg-white shadow-lg transition-all duration-500 ease-in-out sm:m-4 sm:max-w-sm"
)}>
{!isCenter && (
diff --git a/packages/surveys/src/lib/utils.ts b/packages/surveys/src/lib/utils.ts
index d513134b4f..4d7c4bc2fb 100644
--- a/packages/surveys/src/lib/utils.ts
+++ b/packages/surveys/src/lib/utils.ts
@@ -1,4 +1,4 @@
-import { TSurveyWithTriggers } from "@formbricks/types/js";
+import { TSurvey } from "@formbricks/types/surveys";
export const cn = (...classes: string[]) => {
return classes.filter(Boolean).join(" ");
@@ -48,7 +48,7 @@ export const shuffleQuestions = (array: any[], shuffleOption: string) => {
return arrayCopy;
};
-export const calculateElementIdx = (survey: TSurveyWithTriggers, currentQustionIdx: number): number => {
+export const calculateElementIdx = (survey: TSurvey, currentQustionIdx: number): number => {
const currentQuestion = survey.questions[currentQustionIdx];
const surveyLength = survey.questions.length;
const middleIdx = Math.floor(surveyLength / 2);
diff --git a/packages/surveys/src/types/props.ts b/packages/surveys/src/types/props.ts
index 3ec6801d91..f905c63c0b 100644
--- a/packages/surveys/src/types/props.ts
+++ b/packages/surveys/src/types/props.ts
@@ -1,8 +1,8 @@
-import { TSurveyWithTriggers } from "@formbricks/types/js";
import { TResponseData, TResponseUpdate } from "@formbricks/types/responses";
+import { TSurvey } from "@formbricks/types/surveys";
export interface SurveyBaseProps {
- survey: TSurveyWithTriggers;
+ survey: TSurvey;
isBrandingEnabled: boolean;
activeQuestionId?: string;
onDisplay?: () => void;
diff --git a/packages/surveys/tailwind.config.js b/packages/surveys/tailwind.config.js
index fb2ab9e32a..9a00263606 100644
--- a/packages/surveys/tailwind.config.js
+++ b/packages/surveys/tailwind.config.js
@@ -7,30 +7,30 @@ module.exports = {
},
content: ["./src/**/*.{tsx,ts,jsx,js}"],
theme: {
- colors: {
- brand: "var(--fb-brand-color)",
- "on-brand": "var(--fb-brand-text-color)",
- border: "var(--fb-border-color)",
- "border-highlight": "var(--fb-border-color-highlight)",
- focus: "var(--fb-focus-color)",
- heading: "var(--fb-heading-color)",
- subheading: "var(--fb-subheading-color)",
- "info-text": "var(--fb-info-text-color)",
- signature: "var(--fb-signature-text-color)",
- "survey-bg": "var(--fb-survey-background-color)",
- "accent-bg": "var(--fb-accent-background-color)",
- "accent-selected-bg": "var(--fb-accent-background-color-selected)",
- placeholder: "var(--fb-placeholder-color)",
- shadow: "var(--fb-shadow-color)",
- "rating-fill": "var(--fb-rating-fill)",
- "rating-focus": "var(--fb-rating-hover)",
- "rating-selected": "var(--fb-rating-selected)",
- "back-button-border": "var(--fb-back-btn-border)",
- "submit-button-border": "var(--fb-submit-btn-border)",
- "close-button": "var(--fb-close-btn-color)",
- "close-button-focus": "var(--fb-close-btn-hover-color)",
- },
extend: {
+ colors: {
+ brand: "var(--fb-brand-color)",
+ "on-brand": "var(--fb-brand-text-color)",
+ border: "var(--fb-border-color)",
+ "border-highlight": "var(--fb-border-color-highlight)",
+ focus: "var(--fb-focus-color)",
+ heading: "var(--fb-heading-color)",
+ subheading: "var(--fb-subheading-color)",
+ "info-text": "var(--fb-info-text-color)",
+ signature: "var(--fb-signature-text-color)",
+ "survey-bg": "var(--fb-survey-background-color)",
+ "accent-bg": "var(--fb-accent-background-color)",
+ "accent-selected-bg": "var(--fb-accent-background-color-selected)",
+ placeholder: "var(--fb-placeholder-color)",
+ shadow: "var(--fb-shadow-color)",
+ "rating-fill": "var(--fb-rating-fill)",
+ "rating-focus": "var(--fb-rating-hover)",
+ "rating-selected": "var(--fb-rating-selected)",
+ "back-button-border": "var(--fb-back-btn-border)",
+ "submit-button-border": "var(--fb-submit-btn-border)",
+ "close-button": "var(--fb-close-btn-color)",
+ "close-button-focus": "var(--fb-close-btn-hover-color)",
+ },
zIndex: {
999999: "999999",
},
diff --git a/packages/tailwind-config/package.json b/packages/tailwind-config/package.json
index 38ce5df87c..0adcfa4cd7 100644
--- a/packages/tailwind-config/package.json
+++ b/packages/tailwind-config/package.json
@@ -7,10 +7,10 @@
"clean": "rimraf node_modules .turbo"
},
"devDependencies": {
- "@tailwindcss/forms": "^0.5.6",
+ "@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31",
- "tailwindcss": "^3.3.3"
+ "tailwindcss": "^3.3.5"
}
}
diff --git a/packages/tsconfig/package.json b/packages/tsconfig/package.json
index cc020d90c5..611c16da40 100644
--- a/packages/tsconfig/package.json
+++ b/packages/tsconfig/package.json
@@ -7,9 +7,9 @@
"clean": "rimraf node_modules dist turbo"
},
"devDependencies": {
- "@types/node": "20.8.6",
- "@types/react": "18.2.28",
- "@types/react-dom": "18.2.13",
+ "@types/node": "20.9.0",
+ "@types/react": "18.2.37",
+ "@types/react-dom": "18.2.15",
"typescript": "^5.2.2"
}
}
diff --git a/packages/types/displays.ts b/packages/types/displays.ts
index 8d7cf2296c..587b68059e 100644
--- a/packages/types/displays.ts
+++ b/packages/types/displays.ts
@@ -30,12 +30,20 @@ export const ZDisplayLegacyCreateInput = z.object({
export type TDisplayLegacyCreateInput = z.infer;
export const ZDisplayUpdateInput = z.object({
- personId: z.string().cuid().optional(),
+ environmentId: z.string().cuid(),
+ userId: z.string().cuid().optional(),
responseId: z.string().cuid().optional(),
});
export type TDisplayUpdateInput = z.infer;
+export const ZDisplayLegacyUpdateInput = z.object({
+ personId: z.string().cuid().optional(),
+ responseId: z.string().cuid().optional(),
+});
+
+export type TDisplayLegacyUpdateInput = z.infer;
+
export const ZDisplaysWithSurveyName = ZDisplay.extend({
surveyName: z.string(),
});
diff --git a/packages/types/js.ts b/packages/types/js.ts
index cbcb581f3d..d06d9d1828 100644
--- a/packages/types/js.ts
+++ b/packages/types/js.ts
@@ -20,7 +20,7 @@ export type TJSStateDisplay = z.infer;
export const ZJsState = z.object({
person: ZPerson.nullable(),
- surveys: z.array(ZSurveyWithTriggers),
+ surveys: z.array(ZSurvey),
noCodeActionClasses: z.array(ZActionClass),
product: ZProduct,
displays: z.array(ZJSStateDisplay).optional(),
@@ -55,7 +55,7 @@ export type TJsSyncInput = z.infer;
export const ZJsSyncLegacyInput = z.object({
environmentId: z.string().cuid(),
- personId: z.string().cuid().optional(),
+ personId: z.string().cuid().optional().or(z.literal("legacy")),
sessionId: z.string().cuid().optional(),
jsVersion: z.string().optional(),
});
diff --git a/packages/types/people.ts b/packages/types/people.ts
index 4a00c8c7b1..0a246574e1 100644
--- a/packages/types/people.ts
+++ b/packages/types/people.ts
@@ -12,9 +12,10 @@ export const ZPerson = z.object({
environmentId: z.string().cuid2(),
});
+export type TPerson = z.infer;
+
export const ZPersonUpdateInput = z.object({
attributes: ZPersonAttributes,
});
export type TPersonUpdateInput = z.infer;
-export type TPerson = z.infer;
diff --git a/packages/types/responses.ts b/packages/types/responses.ts
index 3b068c032d..9d8a639d6e 100644
--- a/packages/types/responses.ts
+++ b/packages/types/responses.ts
@@ -66,8 +66,9 @@ export type TResponseDates = {
};
export const ZResponseInput = z.object({
+ environmentId: z.string().cuid2(),
surveyId: z.string().cuid2(),
- personId: z.string().cuid2().nullable(),
+ userId: z.string().nullish(),
singleUseId: z.string().nullable().optional(),
finished: z.boolean(),
data: ZResponseData,
@@ -88,6 +89,12 @@ export const ZResponseInput = z.object({
export type TResponseInput = z.infer;
+export const ZResponseLegacyInput = ZResponseInput.omit({ userId: true, environmentId: true }).extend({
+ personId: z.string().cuid2().nullable(),
+});
+
+export type TResponseLegacyInput = z.infer;
+
export const ZResponseUpdateInput = z.object({
finished: z.boolean(),
data: ZResponseData,
diff --git a/packages/types/surveys.ts b/packages/types/surveys.ts
index 5e9f13f3c6..9b9ad51747 100644
--- a/packages/types/surveys.ts
+++ b/packages/types/surveys.ts
@@ -37,7 +37,7 @@ export const ZSurveyProductOverwrites = z.object({
brandColor: ZColor.nullish(),
highlightBorderColor: ZColor.nullish(),
placement: ZPlacement.nullish(),
- clickOutside: z.boolean().nullish(),
+ clickOutsideClose: z.boolean().nullish(),
darkOverlay: z.boolean().nullish(),
});
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 8500468079..bb7e3c7b98 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -41,7 +41,7 @@
"clsx": "^2.0.0",
"cmdk": "^0.2.0",
"lexical": "^0.12.2",
- "lucide-react": "^0.290.0",
+ "lucide-react": "^0.292.0",
"react-colorful": "^5.6.1",
"react-confetti": "^6.1.0",
"react-day-picker": "^8.9.1",
diff --git a/ph.png b/ph.png
deleted file mode 100644
index 9f8d338e34..0000000000
Binary files a/ph.png and /dev/null differ
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 1d3c6e3f38..641922bbe6 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -62,7 +62,7 @@ importers:
version: 1.3.0(react-dom@18.2.0)(react@18.2.0)
'@docsearch/react':
specifier: ^3.5.2
- version: 3.5.2(@algolia/client-search@4.20.0)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.9.0)
+ version: 3.5.2(@algolia/client-search@4.20.0)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.9.0)
'@formbricks/lib':
specifier: workspace:*
version: link:../../packages/lib
@@ -98,10 +98,10 @@ importers:
version: 2.2.2
'@radix-ui/react-slider':
specifier: ^1.1.2
- version: 1.1.2(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.1.2(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-tooltip':
specifier: ^1.0.6
- version: 1.0.7(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.7(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
'@sindresorhus/slugify':
specifier: ^2.2.1
version: 2.2.1
@@ -176,7 +176,7 @@ importers:
version: 4.11.0(react@18.2.0)
react-markdown:
specifier: ^8.0.7
- version: 8.0.7(@types/react@18.2.28)(react@18.2.0)
+ version: 8.0.7(@types/react@18.2.37)(react@18.2.0)
react-responsive-embed:
specifier: ^2.1.0
version: 2.1.0(prop-types@15.8.1)(react@18.2.0)
@@ -209,7 +209,7 @@ importers:
version: 5.0.0
zustand:
specifier: ^4.4.1
- version: 4.4.4(@types/react@18.2.28)(react@18.2.0)
+ version: 4.4.4(@types/react@18.2.37)(react@18.2.0)
devDependencies:
'@formbricks/tsconfig':
specifier: workspace:*
@@ -262,10 +262,10 @@ importers:
version: 0.2.2
'@typescript-eslint/eslint-plugin':
specifier: ^6.8.0
- version: 6.9.0(@typescript-eslint/parser@6.8.0)(eslint@8.52.0)(typescript@5.2.2)
+ version: 6.9.0(@typescript-eslint/parser@6.8.0)(eslint@8.53.0)(typescript@5.2.2)
'@typescript-eslint/parser':
specifier: ^6.8.0
- version: 6.8.0(eslint@8.52.0)(typescript@5.2.2)
+ version: 6.8.0(eslint@8.53.0)(typescript@5.2.2)
'@vitejs/plugin-react':
specifier: ^4.1.0
version: 4.1.0(vite@4.5.0)
@@ -277,13 +277,13 @@ importers:
version: 7.2.0(typescript@5.2.2)
vite:
specifier: ^4.4.11
- version: 4.5.0(terser@5.22.0)
+ version: 4.5.0
apps/web:
dependencies:
'@aws-sdk/s3-presigned-post':
- specifier: ^3.438.0
- version: 3.438.0
+ specifier: ^3.451.0
+ version: 3.451.0
'@formbricks/api':
specifier: workspace:*
version: link:../../packages/api
@@ -327,11 +327,11 @@ importers:
specifier: ^2.0.6
version: 2.0.6(react-dom@18.2.0)(react@18.2.0)
'@react-email/components':
- specifier: ^0.0.9
- version: 0.0.9(react@18.2.0)
+ specifier: ^0.0.11
+ version: 0.0.11(react@18.2.0)
'@sentry/nextjs':
- specifier: ^7.77.0
- version: 7.77.0(encoding@0.1.13)(next@13.5.6)(react@18.2.0)(webpack@5.89.0)
+ specifier: ^7.80.1
+ version: 7.80.1(encoding@0.1.13)(next@13.5.6)(react@18.2.0)(webpack@5.89.0)
'@vercel/og':
specifier: ^0.5.20
version: 0.5.20
@@ -345,8 +345,8 @@ importers:
specifier: ^0.1.13
version: 0.1.13
framer-motion:
- specifier: 10.16.4
- version: 10.16.4(react-dom@18.2.0)(react@18.2.0)
+ specifier: 10.16.5
+ version: 10.16.5(react-dom@18.2.0)(react@18.2.0)
googleapis:
specifier: ^128.0.0
version: 128.0.0(encoding@0.1.13)
@@ -357,11 +357,11 @@ importers:
specifier: ^4.17.21
version: 4.17.21
lru-cache:
- specifier: ^10.0.1
- version: 10.0.1
+ specifier: ^10.0.2
+ version: 10.0.2
lucide-react:
- specifier: ^0.290.0
- version: 0.290.0(react@18.2.0)
+ specifier: ^0.292.0
+ version: 0.292.0(react@18.2.0)
mime:
specifier: ^3.0.0
version: 3.0.0
@@ -375,8 +375,8 @@ importers:
specifier: ^12.0.1
version: 12.0.1
posthog-js:
- specifier: ^1.87.3
- version: 1.87.3
+ specifier: ^1.91.1
+ version: 1.91.1
prismjs:
specifier: ^1.29.0
version: 1.29.0
@@ -396,14 +396,14 @@ importers:
specifier: ^1.9.5
version: 1.9.5(encoding@0.1.13)
react-hook-form:
- specifier: ^7.47.0
- version: 7.47.0(react@18.2.0)
+ specifier: ^7.48.2
+ version: 7.48.2(react@18.2.0)
react-hot-toast:
specifier: ^2.4.1
version: 2.4.1(csstype@3.1.2)(react-dom@18.2.0)(react@18.2.0)
react-icons:
- specifier: ^4.11.0
- version: 4.11.0(react@18.2.0)
+ specifier: ^4.12.0
+ version: 4.12.0(react@18.2.0)
ua-parser-js:
specifier: ^1.0.37
version: 1.0.37
@@ -418,17 +418,17 @@ importers:
specifier: workspace:*
version: link:../../packages/tsconfig
'@types/bcryptjs':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@types/lodash':
- specifier: ^4.14.200
- version: 4.14.200
+ specifier: ^4.14.201
+ version: 4.14.201
'@types/markdown-it':
- specifier: ^13.0.5
- version: 13.0.5
+ specifier: ^13.0.6
+ version: 13.0.6
'@types/qrcode':
- specifier: ^1.5.4
- version: 1.5.4
+ specifier: ^1.5.5
+ version: 1.5.5
eslint-config-formbricks:
specifier: workspace:*
version: link:../../packages/eslint-config-formbricks
@@ -445,23 +445,23 @@ importers:
specifier: workspace:*
version: link:../eslint-config-formbricks
terser:
- specifier: ^5.22.0
- version: 5.22.0
+ specifier: ^5.24.0
+ version: 5.24.0
vite:
- specifier: ^4.4.11
- version: 4.5.0(terser@5.22.0)
+ specifier: ^5.0.0
+ version: 5.0.0(terser@5.24.0)
vite-plugin-dts:
- specifier: ^3.6.0
- version: 3.6.2(typescript@5.2.2)(vite@4.5.0)
+ specifier: ^3.6.3
+ version: 3.6.3(typescript@5.2.2)(vite@5.0.0)
packages/database:
dependencies:
'@prisma/client':
- specifier: ^5.4.2
- version: 5.5.2(prisma@5.5.2)
+ specifier: ^5.6.0
+ version: 5.6.0(prisma@5.6.0)
'@prisma/extension-accelerate':
specifier: ^0.6.2
- version: 0.6.2(@prisma/client@5.5.2)
+ version: 0.6.2(@prisma/client@5.6.0)
dotenv-cli:
specifier: ^7.3.0
version: 7.3.0
@@ -476,20 +476,20 @@ importers:
specifier: workspace:*
version: link:../eslint-config-formbricks
prisma:
- specifier: ^5.4.2
- version: 5.5.2
+ specifier: ^5.6.0
+ version: 5.6.0
prisma-dbml-generator:
specifier: ^0.10.0
version: 0.10.0
prisma-json-types-generator:
- specifier: ^3.0.2
- version: 3.0.2(prisma@5.5.2)(typescript@5.2.2)
+ specifier: ^3.0.3
+ version: 3.0.3(prisma@5.6.0)(typescript@5.2.2)
zod:
specifier: ^3.22.4
version: 3.22.4
zod-prisma:
specifier: ^0.5.4
- version: 0.5.4(prisma@5.5.2)(zod@3.22.4)
+ version: 0.5.4(prisma@5.6.0)(zod@3.22.4)
packages/ee:
dependencies:
@@ -497,8 +497,8 @@ importers:
specifier: workspace:*
version: link:../lib
stripe:
- specifier: ^14.0.0
- version: 14.2.0
+ specifier: ^14.4.0
+ version: 14.4.0
devDependencies:
'@formbricks/tsconfig':
specifier: '*'
@@ -516,41 +516,41 @@ importers:
packages/eslint-config-formbricks:
devDependencies:
eslint:
- specifier: ^8.52.0
- version: 8.52.0
+ specifier: ^8.53.0
+ version: 8.53.0
eslint-config-next:
- specifier: ^14.0.0
- version: 14.0.0(eslint@8.52.0)(typescript@5.2.2)
+ specifier: ^14.0.3
+ version: 14.0.3(eslint@8.53.0)(typescript@5.2.2)
eslint-config-prettier:
specifier: ^9.0.0
- version: 9.0.0(eslint@8.52.0)
+ version: 9.0.0(eslint@8.53.0)
eslint-config-turbo:
specifier: latest
- version: 1.8.8(eslint@8.52.0)
+ version: 1.8.8(eslint@8.53.0)
eslint-plugin-react:
specifier: 7.33.2
- version: 7.33.2(eslint@8.52.0)
+ version: 7.33.2(eslint@8.53.0)
eslint-plugin-react-hooks:
specifier: ^4.6.0
- version: 4.6.0(eslint@8.52.0)
+ version: 4.6.0(eslint@8.53.0)
eslint-plugin-react-refresh:
specifier: ^0.4.4
- version: 0.4.4(eslint@8.52.0)
+ version: 0.4.4(eslint@8.53.0)
eslint-plugin-storybook:
specifier: ^0.6.15
- version: 0.6.15(eslint@8.52.0)(typescript@5.2.2)
+ version: 0.6.15(eslint@8.53.0)(typescript@5.2.2)
packages/js:
devDependencies:
'@babel/core':
- specifier: ^7.23.2
- version: 7.23.2
+ specifier: ^7.23.3
+ version: 7.23.3
'@babel/preset-env':
- specifier: ^7.23.2
- version: 7.23.2(@babel/core@7.23.2)
+ specifier: ^7.23.3
+ version: 7.23.3(@babel/core@7.23.3)
'@babel/preset-typescript':
- specifier: ^7.23.2
- version: 7.23.2(@babel/core@7.23.2)
+ specifier: ^7.23.3
+ version: 7.23.3(@babel/core@7.23.3)
'@formbricks/api':
specifier: workspace:*
version: link:../api
@@ -567,17 +567,17 @@ importers:
specifier: workspace:*
version: link:../types
'@types/jest':
- specifier: ^29.5.5
- version: 29.5.6
+ specifier: ^29.5.8
+ version: 29.5.8
'@typescript-eslint/eslint-plugin':
- specifier: ^6.8.0
- version: 6.9.0(@typescript-eslint/parser@6.8.0)(eslint@8.52.0)(typescript@5.2.2)
+ specifier: ^6.11.0
+ version: 6.11.0(@typescript-eslint/parser@6.11.0)(eslint@8.53.0)(typescript@5.2.2)
'@typescript-eslint/parser':
- specifier: ^6.8.0
- version: 6.8.0(eslint@8.52.0)(typescript@5.2.2)
+ specifier: ^6.11.0
+ version: 6.11.0(eslint@8.53.0)(typescript@5.2.2)
babel-jest:
specifier: ^29.7.0
- version: 29.7.0(@babel/core@7.23.2)
+ version: 29.7.0(@babel/core@7.23.3)
cross-env:
specifier: ^7.0.3
version: 7.0.3
@@ -597,23 +597,23 @@ importers:
specifier: ^3.0.3
version: 3.0.3
terser:
- specifier: ^5.22.0
- version: 5.22.0
+ specifier: ^5.24.0
+ version: 5.24.0
vite:
- specifier: ^4.4.11
- version: 4.5.0(terser@5.22.0)
+ specifier: ^5.0.0
+ version: 5.0.0(terser@5.24.0)
vite-plugin-dts:
- specifier: ^3.6.0
- version: 3.6.2(typescript@5.2.2)(vite@4.5.0)
+ specifier: ^3.6.3
+ version: 3.6.3(typescript@5.2.2)(vite@5.0.0)
packages/lib:
dependencies:
'@aws-sdk/client-s3':
- specifier: 3.433.0
- version: 3.433.0(aws-crt@1.18.3)
+ specifier: 3.451.0
+ version: 3.451.0(aws-crt@1.19.0)
'@aws-sdk/s3-request-presigner':
- specifier: 3.433.0
- version: 3.433.0
+ specifier: 3.451.0
+ version: 3.451.0
'@formbricks/api':
specifier: '*'
version: link:../api
@@ -630,8 +630,8 @@ importers:
specifier: ^0.7.1
version: 0.7.1(zod@3.22.4)
aws-crt:
- specifier: ^1.18.1
- version: 1.18.3
+ specifier: ^1.19.0
+ version: 1.19.0
date-fns:
specifier: ^2.30.0
version: 2.30.0
@@ -645,33 +645,33 @@ importers:
specifier: 3.0.0
version: 3.0.0
nanoid:
- specifier: ^5.0.2
- version: 5.0.2
+ specifier: ^5.0.3
+ version: 5.0.3
next-auth:
- specifier: ^4.23.2
- version: 4.24.4(next@14.0.0)(nodemailer@6.9.7)(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^4.24.5
+ version: 4.24.5(next@14.0.0)(nodemailer@6.9.7)(react-dom@18.2.0)(react@18.2.0)
nodemailer:
- specifier: ^6.9.6
+ specifier: ^6.9.7
version: 6.9.7
posthog-node:
- specifier: ^3.1.2
+ specifier: ^3.1.3
version: 3.1.3
server-only:
specifier: ^0.0.1
version: 0.0.1
tailwind-merge:
- specifier: ^1.14.0
- version: 1.14.0
+ specifier: ^2.0.0
+ version: 2.0.0
devDependencies:
'@formbricks/tsconfig':
specifier: '*'
version: link:../tsconfig
'@types/jsonwebtoken':
- specifier: ^9.0.3
- version: 9.0.4
+ specifier: ^9.0.5
+ version: 9.0.5
'@types/mime':
- specifier: 3.0.3
- version: 3.0.3
+ specifier: 3.0.4
+ version: 3.0.4
eslint-config-formbricks:
specifier: workspace:*
version: link:../eslint-config-formbricks
@@ -679,17 +679,17 @@ importers:
packages/n8n-node:
devDependencies:
'@types/express':
- specifier: ^4.17.19
- version: 4.17.20
+ specifier: ^4.17.21
+ version: 4.17.21
'@types/request-promise-native':
- specifier: ~1.0.19
- version: 1.0.20
+ specifier: ~1.0.21
+ version: 1.0.21
'@typescript-eslint/parser':
- specifier: ~6.8
- version: 6.8.0(eslint@8.52.0)(typescript@5.2.2)
+ specifier: ~6.11
+ version: 6.11.0(eslint@8.53.0)(typescript@5.2.2)
eslint-plugin-n8n-nodes-base:
- specifier: ^1.16.0
- version: 1.16.0(eslint@8.52.0)(typescript@5.2.2)
+ specifier: ^1.16.1
+ version: 1.16.1(eslint@8.53.0)(typescript@5.2.2)
gulp:
specifier: ^4.0.2
version: 4.0.2
@@ -719,7 +719,7 @@ importers:
version: link:../types
'@preact/preset-vite':
specifier: ^2.6.0
- version: 2.6.0(@babel/core@7.23.2)(preact@10.18.1)(vite@4.5.0)
+ version: 2.6.0(@babel/core@7.23.3)(preact@10.19.2)(vite@5.0.0)
autoprefixer:
specifier: ^10.4.16
version: 10.4.16(postcss@8.4.31)
@@ -730,29 +730,29 @@ importers:
specifier: ^8.4.31
version: 8.4.31
preact:
- specifier: ^10.18.1
- version: 10.18.1
+ specifier: ^10.19.2
+ version: 10.19.2
tailwindcss:
- specifier: ^3.3.3
+ specifier: ^3.3.5
version: 3.3.5
terser:
- specifier: ^5.22.0
- version: 5.22.0
+ specifier: ^5.24.0
+ version: 5.24.0
vite:
- specifier: ^4.4.11
- version: 4.5.0(terser@5.22.0)
+ specifier: ^5.0.0
+ version: 5.0.0(terser@5.24.0)
vite-plugin-dts:
- specifier: ^3.6.0
- version: 3.6.2(typescript@5.2.2)(vite@4.5.0)
+ specifier: ^3.6.3
+ version: 3.6.3(typescript@5.2.2)(vite@5.0.0)
vite-tsconfig-paths:
specifier: ^4.2.1
- version: 4.2.1(typescript@5.2.2)(vite@4.5.0)
+ version: 4.2.1(typescript@5.2.2)(vite@5.0.0)
packages/tailwind-config:
devDependencies:
'@tailwindcss/forms':
- specifier: ^0.5.6
- version: 0.5.6(tailwindcss@3.3.5)
+ specifier: ^0.5.7
+ version: 0.5.7(tailwindcss@3.3.5)
'@tailwindcss/typography':
specifier: ^0.5.10
version: 0.5.10(tailwindcss@3.3.5)
@@ -763,20 +763,20 @@ importers:
specifier: ^8.4.31
version: 8.4.31
tailwindcss:
- specifier: ^3.3.3
+ specifier: ^3.3.5
version: 3.3.5
packages/tsconfig:
devDependencies:
'@types/node':
- specifier: 20.8.6
- version: 20.8.6
+ specifier: 20.9.0
+ version: 20.9.0
'@types/react':
- specifier: 18.2.28
- version: 18.2.28
+ specifier: 18.2.37
+ version: 18.2.37
'@types/react-dom':
- specifier: 18.2.13
- version: 18.2.13
+ specifier: 18.2.15
+ version: 18.2.15
typescript:
specifier: ^5.2.2
version: 5.2.2
@@ -852,7 +852,7 @@ importers:
version: 1.0.3(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-tooltip':
specifier: ^1.0.7
- version: 1.0.7(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.7(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
boring-avatars:
specifier: ^1.10.1
version: 1.10.1
@@ -869,8 +869,8 @@ importers:
specifier: ^0.12.2
version: 0.12.2
lucide-react:
- specifier: ^0.290.0
- version: 0.290.0(react@18.2.0)
+ specifier: ^0.292.0
+ version: 0.292.0(react@18.2.0)
mime:
specifier: ^3.0.0
version: 3.0.0
@@ -1108,7 +1108,7 @@ packages:
resolution: {integrity: sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==}
dependencies:
'@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.433.0
+ '@aws-sdk/types': 3.451.0
tslib: 1.14.1
dev: false
@@ -1116,7 +1116,7 @@ packages:
resolution: {integrity: sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w==}
dependencies:
'@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.433.0
+ '@aws-sdk/types': 3.451.0
tslib: 1.14.1
dev: false
@@ -1132,7 +1132,7 @@ packages:
'@aws-crypto/ie11-detection': 3.0.0
'@aws-crypto/supports-web-crypto': 3.0.0
'@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.433.0
+ '@aws-sdk/types': 3.451.0
'@aws-sdk/util-locate-window': 3.310.0
'@aws-sdk/util-utf8-browser': 3.259.0
tslib: 1.14.1
@@ -1145,7 +1145,7 @@ packages:
'@aws-crypto/sha256-js': 3.0.0
'@aws-crypto/supports-web-crypto': 3.0.0
'@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.433.0
+ '@aws-sdk/types': 3.451.0
'@aws-sdk/util-locate-window': 3.310.0
'@aws-sdk/util-utf8-browser': 3.259.0
tslib: 1.14.1
@@ -1155,7 +1155,7 @@ packages:
resolution: {integrity: sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==}
dependencies:
'@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.433.0
+ '@aws-sdk/types': 3.451.0
tslib: 1.14.1
dev: false
@@ -1168,759 +1168,492 @@ packages:
/@aws-crypto/util@3.0.0:
resolution: {integrity: sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==}
dependencies:
- '@aws-sdk/types': 3.433.0
+ '@aws-sdk/types': 3.451.0
'@aws-sdk/util-utf8-browser': 3.259.0
tslib: 1.14.1
dev: false
- /@aws-sdk/client-s3@3.433.0(aws-crt@1.18.3):
- resolution: {integrity: sha512-gCuV4kmmHPFrQIl53VxddIylqItarwyX9+ykNIxMoMcEcBVmJhmshV6M9Re+wzS8eUPB6maqurOKGu83YUMpIA==}
+ /@aws-sdk/client-s3@3.451.0(aws-crt@1.19.0):
+ resolution: {integrity: sha512-wDQjG/5jEswus1JclfcWeTIwrAXfAFSPz1tvwo7mRrfDNH8UPFjKKBI9ArBBwwaWUj4ou++56CHFKhKX4ytaQw==}
engines: {node: '>=14.0.0'}
dependencies:
'@aws-crypto/sha1-browser': 3.0.0
'@aws-crypto/sha256-browser': 3.0.0
'@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.433.0(aws-crt@1.18.3)
- '@aws-sdk/credential-provider-node': 3.433.0(aws-crt@1.18.3)
- '@aws-sdk/middleware-bucket-endpoint': 3.433.0
- '@aws-sdk/middleware-expect-continue': 3.433.0
- '@aws-sdk/middleware-flexible-checksums': 3.433.0
- '@aws-sdk/middleware-host-header': 3.433.0
- '@aws-sdk/middleware-location-constraint': 3.433.0
- '@aws-sdk/middleware-logger': 3.433.0
- '@aws-sdk/middleware-recursion-detection': 3.433.0
- '@aws-sdk/middleware-sdk-s3': 3.433.0
- '@aws-sdk/middleware-signing': 3.433.0
- '@aws-sdk/middleware-ssec': 3.433.0
- '@aws-sdk/middleware-user-agent': 3.433.0
- '@aws-sdk/region-config-resolver': 3.433.0
- '@aws-sdk/signature-v4-multi-region': 3.433.0
- '@aws-sdk/types': 3.433.0
- '@aws-sdk/util-endpoints': 3.433.0
- '@aws-sdk/util-user-agent-browser': 3.433.0
- '@aws-sdk/util-user-agent-node': 3.433.0(aws-crt@1.18.3)
+ '@aws-sdk/client-sts': 3.451.0(aws-crt@1.19.0)
+ '@aws-sdk/core': 3.451.0
+ '@aws-sdk/credential-provider-node': 3.451.0(aws-crt@1.19.0)
+ '@aws-sdk/middleware-bucket-endpoint': 3.451.0
+ '@aws-sdk/middleware-expect-continue': 3.451.0
+ '@aws-sdk/middleware-flexible-checksums': 3.451.0
+ '@aws-sdk/middleware-host-header': 3.451.0
+ '@aws-sdk/middleware-location-constraint': 3.451.0
+ '@aws-sdk/middleware-logger': 3.451.0
+ '@aws-sdk/middleware-recursion-detection': 3.451.0
+ '@aws-sdk/middleware-sdk-s3': 3.451.0
+ '@aws-sdk/middleware-signing': 3.451.0
+ '@aws-sdk/middleware-ssec': 3.451.0
+ '@aws-sdk/middleware-user-agent': 3.451.0
+ '@aws-sdk/region-config-resolver': 3.451.0
+ '@aws-sdk/signature-v4-multi-region': 3.451.0
+ '@aws-sdk/types': 3.451.0
+ '@aws-sdk/util-endpoints': 3.451.0
+ '@aws-sdk/util-user-agent-browser': 3.451.0
+ '@aws-sdk/util-user-agent-node': 3.451.0(aws-crt@1.19.0)
'@aws-sdk/xml-builder': 3.310.0
- '@smithy/config-resolver': 2.0.16
- '@smithy/eventstream-serde-browser': 2.0.12
- '@smithy/eventstream-serde-config-resolver': 2.0.12
- '@smithy/eventstream-serde-node': 2.0.12
- '@smithy/fetch-http-handler': 2.2.4
- '@smithy/hash-blob-browser': 2.0.12
- '@smithy/hash-node': 2.0.12
- '@smithy/hash-stream-node': 2.0.12
- '@smithy/invalid-dependency': 2.0.12
- '@smithy/md5-js': 2.0.12
- '@smithy/middleware-content-length': 2.0.14
- '@smithy/middleware-endpoint': 2.1.3
- '@smithy/middleware-retry': 2.0.18
- '@smithy/middleware-serde': 2.0.12
- '@smithy/middleware-stack': 2.0.6
- '@smithy/node-config-provider': 2.1.3
- '@smithy/node-http-handler': 2.1.8
- '@smithy/protocol-http': 3.0.8
- '@smithy/smithy-client': 2.1.12
- '@smithy/types': 2.4.0
- '@smithy/url-parser': 2.0.12
- '@smithy/util-base64': 2.0.0
+ '@smithy/config-resolver': 2.0.18
+ '@smithy/eventstream-serde-browser': 2.0.13
+ '@smithy/eventstream-serde-config-resolver': 2.0.13
+ '@smithy/eventstream-serde-node': 2.0.13
+ '@smithy/fetch-http-handler': 2.2.6
+ '@smithy/hash-blob-browser': 2.0.14
+ '@smithy/hash-node': 2.0.15
+ '@smithy/hash-stream-node': 2.0.15
+ '@smithy/invalid-dependency': 2.0.13
+ '@smithy/md5-js': 2.0.15
+ '@smithy/middleware-content-length': 2.0.15
+ '@smithy/middleware-endpoint': 2.2.0
+ '@smithy/middleware-retry': 2.0.20
+ '@smithy/middleware-serde': 2.0.13
+ '@smithy/middleware-stack': 2.0.7
+ '@smithy/node-config-provider': 2.1.5
+ '@smithy/node-http-handler': 2.1.9
+ '@smithy/protocol-http': 3.0.9
+ '@smithy/smithy-client': 2.1.15
+ '@smithy/types': 2.5.0
+ '@smithy/url-parser': 2.0.13
+ '@smithy/util-base64': 2.0.1
'@smithy/util-body-length-browser': 2.0.0
'@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.16
- '@smithy/util-defaults-mode-node': 2.0.21
- '@smithy/util-retry': 2.0.5
- '@smithy/util-stream': 2.0.17
- '@smithy/util-utf8': 2.0.0
- '@smithy/util-waiter': 2.0.12
+ '@smithy/util-defaults-mode-browser': 2.0.19
+ '@smithy/util-defaults-mode-node': 2.0.25
+ '@smithy/util-endpoints': 1.0.4
+ '@smithy/util-retry': 2.0.6
+ '@smithy/util-stream': 2.0.20
+ '@smithy/util-utf8': 2.0.2
+ '@smithy/util-waiter': 2.0.13
fast-xml-parser: 4.2.5
tslib: 2.6.2
transitivePeerDependencies:
- aws-crt
dev: false
- /@aws-sdk/client-s3@3.438.0:
- resolution: {integrity: sha512-5VxdfyZ9oovbK5qzIYW4ZeJ1waD6VqfclSDQLHmgulekM2JYo/goEQJSjWnI4VMWuMsopzvqyeA+L9xq9uXLBQ==}
+ /@aws-sdk/client-sso@3.451.0(aws-crt@1.19.0):
+ resolution: {integrity: sha512-KkYSke3Pdv3MfVH/5fT528+MKjMyPKlcLcd4zQb0x6/7Bl7EHrPh1JZYjzPLHelb+UY5X0qN8+cb8iSu1eiwIQ==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-crypto/sha1-browser': 3.0.0
'@aws-crypto/sha256-browser': 3.0.0
'@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.438.0
- '@aws-sdk/core': 3.436.0
- '@aws-sdk/credential-provider-node': 3.438.0
- '@aws-sdk/middleware-bucket-endpoint': 3.433.0
- '@aws-sdk/middleware-expect-continue': 3.433.0
- '@aws-sdk/middleware-flexible-checksums': 3.433.0
- '@aws-sdk/middleware-host-header': 3.433.0
- '@aws-sdk/middleware-location-constraint': 3.433.0
- '@aws-sdk/middleware-logger': 3.433.0
- '@aws-sdk/middleware-recursion-detection': 3.433.0
- '@aws-sdk/middleware-sdk-s3': 3.433.0
- '@aws-sdk/middleware-signing': 3.433.0
- '@aws-sdk/middleware-ssec': 3.433.0
- '@aws-sdk/middleware-user-agent': 3.438.0
- '@aws-sdk/region-config-resolver': 3.433.0
- '@aws-sdk/signature-v4-multi-region': 3.437.0
- '@aws-sdk/types': 3.433.0
- '@aws-sdk/util-endpoints': 3.438.0
- '@aws-sdk/util-user-agent-browser': 3.433.0
- '@aws-sdk/util-user-agent-node': 3.437.0
- '@aws-sdk/xml-builder': 3.310.0
- '@smithy/config-resolver': 2.0.16
- '@smithy/eventstream-serde-browser': 2.0.12
- '@smithy/eventstream-serde-config-resolver': 2.0.12
- '@smithy/eventstream-serde-node': 2.0.12
- '@smithy/fetch-http-handler': 2.2.4
- '@smithy/hash-blob-browser': 2.0.12
- '@smithy/hash-node': 2.0.12
- '@smithy/hash-stream-node': 2.0.12
- '@smithy/invalid-dependency': 2.0.12
- '@smithy/md5-js': 2.0.12
- '@smithy/middleware-content-length': 2.0.14
- '@smithy/middleware-endpoint': 2.1.3
- '@smithy/middleware-retry': 2.0.18
- '@smithy/middleware-serde': 2.0.12
- '@smithy/middleware-stack': 2.0.6
- '@smithy/node-config-provider': 2.1.3
- '@smithy/node-http-handler': 2.1.8
- '@smithy/protocol-http': 3.0.8
- '@smithy/smithy-client': 2.1.12
- '@smithy/types': 2.4.0
- '@smithy/url-parser': 2.0.12
- '@smithy/util-base64': 2.0.0
+ '@aws-sdk/core': 3.451.0
+ '@aws-sdk/middleware-host-header': 3.451.0
+ '@aws-sdk/middleware-logger': 3.451.0
+ '@aws-sdk/middleware-recursion-detection': 3.451.0
+ '@aws-sdk/middleware-user-agent': 3.451.0
+ '@aws-sdk/region-config-resolver': 3.451.0
+ '@aws-sdk/types': 3.451.0
+ '@aws-sdk/util-endpoints': 3.451.0
+ '@aws-sdk/util-user-agent-browser': 3.451.0
+ '@aws-sdk/util-user-agent-node': 3.451.0(aws-crt@1.19.0)
+ '@smithy/config-resolver': 2.0.18
+ '@smithy/fetch-http-handler': 2.2.6
+ '@smithy/hash-node': 2.0.15
+ '@smithy/invalid-dependency': 2.0.13
+ '@smithy/middleware-content-length': 2.0.15
+ '@smithy/middleware-endpoint': 2.2.0
+ '@smithy/middleware-retry': 2.0.20
+ '@smithy/middleware-serde': 2.0.13
+ '@smithy/middleware-stack': 2.0.7
+ '@smithy/node-config-provider': 2.1.5
+ '@smithy/node-http-handler': 2.1.9
+ '@smithy/protocol-http': 3.0.9
+ '@smithy/smithy-client': 2.1.15
+ '@smithy/types': 2.5.0
+ '@smithy/url-parser': 2.0.13
+ '@smithy/util-base64': 2.0.1
'@smithy/util-body-length-browser': 2.0.0
'@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.16
- '@smithy/util-defaults-mode-node': 2.0.21
- '@smithy/util-endpoints': 1.0.2
- '@smithy/util-retry': 2.0.5
- '@smithy/util-stream': 2.0.17
- '@smithy/util-utf8': 2.0.0
- '@smithy/util-waiter': 2.0.12
+ '@smithy/util-defaults-mode-browser': 2.0.19
+ '@smithy/util-defaults-mode-node': 2.0.25
+ '@smithy/util-endpoints': 1.0.4
+ '@smithy/util-retry': 2.0.6
+ '@smithy/util-utf8': 2.0.2
+ tslib: 2.6.2
+ transitivePeerDependencies:
+ - aws-crt
+ dev: false
+
+ /@aws-sdk/client-sts@3.451.0(aws-crt@1.19.0):
+ resolution: {integrity: sha512-48NcIRxWBdP1fom6RSjwn2R2u7SE7eeV3p+c4s7ukEOfrHhBxJfn3EpqBVQMGzdiU55qFImy+Fe81iA2lXq3Jw==}
+ engines: {node: '>=14.0.0'}
+ dependencies:
+ '@aws-crypto/sha256-browser': 3.0.0
+ '@aws-crypto/sha256-js': 3.0.0
+ '@aws-sdk/core': 3.451.0
+ '@aws-sdk/credential-provider-node': 3.451.0(aws-crt@1.19.0)
+ '@aws-sdk/middleware-host-header': 3.451.0
+ '@aws-sdk/middleware-logger': 3.451.0
+ '@aws-sdk/middleware-recursion-detection': 3.451.0
+ '@aws-sdk/middleware-sdk-sts': 3.451.0
+ '@aws-sdk/middleware-signing': 3.451.0
+ '@aws-sdk/middleware-user-agent': 3.451.0
+ '@aws-sdk/region-config-resolver': 3.451.0
+ '@aws-sdk/types': 3.451.0
+ '@aws-sdk/util-endpoints': 3.451.0
+ '@aws-sdk/util-user-agent-browser': 3.451.0
+ '@aws-sdk/util-user-agent-node': 3.451.0(aws-crt@1.19.0)
+ '@smithy/config-resolver': 2.0.18
+ '@smithy/fetch-http-handler': 2.2.6
+ '@smithy/hash-node': 2.0.15
+ '@smithy/invalid-dependency': 2.0.13
+ '@smithy/middleware-content-length': 2.0.15
+ '@smithy/middleware-endpoint': 2.2.0
+ '@smithy/middleware-retry': 2.0.20
+ '@smithy/middleware-serde': 2.0.13
+ '@smithy/middleware-stack': 2.0.7
+ '@smithy/node-config-provider': 2.1.5
+ '@smithy/node-http-handler': 2.1.9
+ '@smithy/protocol-http': 3.0.9
+ '@smithy/smithy-client': 2.1.15
+ '@smithy/types': 2.5.0
+ '@smithy/url-parser': 2.0.13
+ '@smithy/util-base64': 2.0.1
+ '@smithy/util-body-length-browser': 2.0.0
+ '@smithy/util-body-length-node': 2.1.0
+ '@smithy/util-defaults-mode-browser': 2.0.19
+ '@smithy/util-defaults-mode-node': 2.0.25
+ '@smithy/util-endpoints': 1.0.4
+ '@smithy/util-retry': 2.0.6
+ '@smithy/util-utf8': 2.0.2
fast-xml-parser: 4.2.5
tslib: 2.6.2
transitivePeerDependencies:
- aws-crt
dev: false
- /@aws-sdk/client-sso@3.433.0(aws-crt@1.18.3):
- resolution: {integrity: sha512-L7ksMP7UnYH+w52ly+m+s5vk8662VtyqJ+UduFEMPqKUHTFEm7w+CCw4Xfk3hl5GlVvqPvYWqBqv8eLKSHpCEQ==}
+ /@aws-sdk/core@3.451.0:
+ resolution: {integrity: sha512-SamWW2zHEf1ZKe3j1w0Piauryl8BQIlej0TBS18A4ACzhjhWXhCs13bO1S88LvPR5mBFXok3XOT6zPOnKDFktw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/middleware-host-header': 3.433.0
- '@aws-sdk/middleware-logger': 3.433.0
- '@aws-sdk/middleware-recursion-detection': 3.433.0
- '@aws-sdk/middleware-user-agent': 3.433.0
- '@aws-sdk/region-config-resolver': 3.433.0
- '@aws-sdk/types': 3.433.0
- '@aws-sdk/util-endpoints': 3.433.0
- '@aws-sdk/util-user-agent-browser': 3.433.0
- '@aws-sdk/util-user-agent-node': 3.433.0(aws-crt@1.18.3)
- '@smithy/config-resolver': 2.0.16
- '@smithy/fetch-http-handler': 2.2.4
- '@smithy/hash-node': 2.0.12
- '@smithy/invalid-dependency': 2.0.12
- '@smithy/middleware-content-length': 2.0.14
- '@smithy/middleware-endpoint': 2.1.3
- '@smithy/middleware-retry': 2.0.18
- '@smithy/middleware-serde': 2.0.12
- '@smithy/middleware-stack': 2.0.6
- '@smithy/node-config-provider': 2.1.3
- '@smithy/node-http-handler': 2.1.8
- '@smithy/protocol-http': 3.0.8
- '@smithy/smithy-client': 2.1.12
- '@smithy/types': 2.4.0
- '@smithy/url-parser': 2.0.12
- '@smithy/util-base64': 2.0.0
- '@smithy/util-body-length-browser': 2.0.0
- '@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.16
- '@smithy/util-defaults-mode-node': 2.0.21
- '@smithy/util-retry': 2.0.5
- '@smithy/util-utf8': 2.0.0
+ '@smithy/smithy-client': 2.1.15
+ tslib: 2.6.2
+ dev: false
+
+ /@aws-sdk/credential-provider-env@3.451.0:
+ resolution: {integrity: sha512-9dAav7DcRgaF7xCJEQR5ER9ErXxnu/tdnVJ+UPmb1NPeIZdESv1A3lxFDEq1Fs8c4/lzAj9BpshGyJVIZwZDKg==}
+ engines: {node: '>=14.0.0'}
+ dependencies:
+ '@aws-sdk/types': 3.451.0
+ '@smithy/property-provider': 2.0.14
+ '@smithy/types': 2.5.0
+ tslib: 2.6.2
+ dev: false
+
+ /@aws-sdk/credential-provider-ini@3.451.0(aws-crt@1.19.0):
+ resolution: {integrity: sha512-TySt64Ci5/ZbqFw1F9Z0FIGvYx5JSC9e6gqDnizIYd8eMnn8wFRUscRrD7pIHKfrhvVKN5h0GdYovmMO/FMCBw==}
+ engines: {node: '>=14.0.0'}
+ dependencies:
+ '@aws-sdk/credential-provider-env': 3.451.0
+ '@aws-sdk/credential-provider-process': 3.451.0
+ '@aws-sdk/credential-provider-sso': 3.451.0(aws-crt@1.19.0)
+ '@aws-sdk/credential-provider-web-identity': 3.451.0
+ '@aws-sdk/types': 3.451.0
+ '@smithy/credential-provider-imds': 2.1.1
+ '@smithy/property-provider': 2.0.14
+ '@smithy/shared-ini-file-loader': 2.2.4
+ '@smithy/types': 2.5.0
tslib: 2.6.2
transitivePeerDependencies:
- aws-crt
dev: false
- /@aws-sdk/client-sso@3.438.0:
- resolution: {integrity: sha512-L/xKq+K78PShLku8x5gM6lZDUp7LhFJ2ksKH7Vll+exSZq+QUaxuzjp4gqdzh6B0oIshv2jssQlUa0ScOmVRMg==}
+ /@aws-sdk/credential-provider-node@3.451.0(aws-crt@1.19.0):
+ resolution: {integrity: sha512-AEwM1WPyxUdKrKyUsKyFqqRFGU70e4qlDyrtBxJnSU9NRLZI8tfEZ67bN7fHSxBUBODgDXpMSlSvJiBLh5/3pw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/core': 3.436.0
- '@aws-sdk/middleware-host-header': 3.433.0
- '@aws-sdk/middleware-logger': 3.433.0
- '@aws-sdk/middleware-recursion-detection': 3.433.0
- '@aws-sdk/middleware-user-agent': 3.438.0
- '@aws-sdk/region-config-resolver': 3.433.0
- '@aws-sdk/types': 3.433.0
- '@aws-sdk/util-endpoints': 3.438.0
- '@aws-sdk/util-user-agent-browser': 3.433.0
- '@aws-sdk/util-user-agent-node': 3.437.0
- '@smithy/config-resolver': 2.0.16
- '@smithy/fetch-http-handler': 2.2.4
- '@smithy/hash-node': 2.0.12
- '@smithy/invalid-dependency': 2.0.12
- '@smithy/middleware-content-length': 2.0.14
- '@smithy/middleware-endpoint': 2.1.3
- '@smithy/middleware-retry': 2.0.18
- '@smithy/middleware-serde': 2.0.12
- '@smithy/middleware-stack': 2.0.6
- '@smithy/node-config-provider': 2.1.3
- '@smithy/node-http-handler': 2.1.8
- '@smithy/protocol-http': 3.0.8
- '@smithy/smithy-client': 2.1.12
- '@smithy/types': 2.4.0
- '@smithy/url-parser': 2.0.12
- '@smithy/util-base64': 2.0.0
- '@smithy/util-body-length-browser': 2.0.0
- '@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.16
- '@smithy/util-defaults-mode-node': 2.0.21
- '@smithy/util-endpoints': 1.0.2
- '@smithy/util-retry': 2.0.5
- '@smithy/util-utf8': 2.0.0
- tslib: 2.6.2
- transitivePeerDependencies:
- - aws-crt
- dev: false
-
- /@aws-sdk/client-sts@3.433.0(aws-crt@1.18.3):
- resolution: {integrity: sha512-hQ+NLIcA1KRJ2qPdrtkJ3fOEVnehLLMlnB/I5mjg9K2UKjuiOufLao6tc5SyW9fseIL9AdX3fjJ8Unhg+y1RWg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/credential-provider-node': 3.433.0(aws-crt@1.18.3)
- '@aws-sdk/middleware-host-header': 3.433.0
- '@aws-sdk/middleware-logger': 3.433.0
- '@aws-sdk/middleware-recursion-detection': 3.433.0
- '@aws-sdk/middleware-sdk-sts': 3.433.0
- '@aws-sdk/middleware-signing': 3.433.0
- '@aws-sdk/middleware-user-agent': 3.433.0
- '@aws-sdk/region-config-resolver': 3.433.0
- '@aws-sdk/types': 3.433.0
- '@aws-sdk/util-endpoints': 3.433.0
- '@aws-sdk/util-user-agent-browser': 3.433.0
- '@aws-sdk/util-user-agent-node': 3.433.0(aws-crt@1.18.3)
- '@smithy/config-resolver': 2.0.16
- '@smithy/fetch-http-handler': 2.2.4
- '@smithy/hash-node': 2.0.12
- '@smithy/invalid-dependency': 2.0.12
- '@smithy/middleware-content-length': 2.0.14
- '@smithy/middleware-endpoint': 2.1.3
- '@smithy/middleware-retry': 2.0.18
- '@smithy/middleware-serde': 2.0.12
- '@smithy/middleware-stack': 2.0.6
- '@smithy/node-config-provider': 2.1.3
- '@smithy/node-http-handler': 2.1.8
- '@smithy/protocol-http': 3.0.8
- '@smithy/smithy-client': 2.1.12
- '@smithy/types': 2.4.0
- '@smithy/url-parser': 2.0.12
- '@smithy/util-base64': 2.0.0
- '@smithy/util-body-length-browser': 2.0.0
- '@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.16
- '@smithy/util-defaults-mode-node': 2.0.21
- '@smithy/util-retry': 2.0.5
- '@smithy/util-utf8': 2.0.0
- fast-xml-parser: 4.2.5
- tslib: 2.6.2
- transitivePeerDependencies:
- - aws-crt
- dev: false
-
- /@aws-sdk/client-sts@3.438.0:
- resolution: {integrity: sha512-UBxLZKVVvbR4LHwSNSqaKx22YBSOGkavrh4SyDP8o8XOlXeRxTCllfSfjL9K5Mktp+ZwQ2NiubNcwmvUcGKbbg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/core': 3.436.0
- '@aws-sdk/credential-provider-node': 3.438.0
- '@aws-sdk/middleware-host-header': 3.433.0
- '@aws-sdk/middleware-logger': 3.433.0
- '@aws-sdk/middleware-recursion-detection': 3.433.0
- '@aws-sdk/middleware-sdk-sts': 3.433.0
- '@aws-sdk/middleware-signing': 3.433.0
- '@aws-sdk/middleware-user-agent': 3.438.0
- '@aws-sdk/region-config-resolver': 3.433.0
- '@aws-sdk/types': 3.433.0
- '@aws-sdk/util-endpoints': 3.438.0
- '@aws-sdk/util-user-agent-browser': 3.433.0
- '@aws-sdk/util-user-agent-node': 3.437.0
- '@smithy/config-resolver': 2.0.16
- '@smithy/fetch-http-handler': 2.2.4
- '@smithy/hash-node': 2.0.12
- '@smithy/invalid-dependency': 2.0.12
- '@smithy/middleware-content-length': 2.0.14
- '@smithy/middleware-endpoint': 2.1.3
- '@smithy/middleware-retry': 2.0.18
- '@smithy/middleware-serde': 2.0.12
- '@smithy/middleware-stack': 2.0.6
- '@smithy/node-config-provider': 2.1.3
- '@smithy/node-http-handler': 2.1.8
- '@smithy/protocol-http': 3.0.8
- '@smithy/smithy-client': 2.1.12
- '@smithy/types': 2.4.0
- '@smithy/url-parser': 2.0.12
- '@smithy/util-base64': 2.0.0
- '@smithy/util-body-length-browser': 2.0.0
- '@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.16
- '@smithy/util-defaults-mode-node': 2.0.21
- '@smithy/util-endpoints': 1.0.2
- '@smithy/util-retry': 2.0.5
- '@smithy/util-utf8': 2.0.0
- fast-xml-parser: 4.2.5
- tslib: 2.6.2
- transitivePeerDependencies:
- - aws-crt
- dev: false
-
- /@aws-sdk/core@3.436.0:
- resolution: {integrity: sha512-vX5/LjXvCejC2XUY6TSg1oozjqK6BvkE75t0ys9dgqyr5PlZyZksMoeAFHUlj0sCjhT3ziWCujP1oiSpPWY9hg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@smithy/smithy-client': 2.1.12
- dev: false
-
- /@aws-sdk/credential-provider-env@3.433.0:
- resolution: {integrity: sha512-Vl7Qz5qYyxBurMn6hfSiNJeUHSqfVUlMt0C1Bds3tCkl3IzecRWwyBOlxtxO3VCrgVeW3HqswLzCvhAFzPH6nQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.433.0
- '@smithy/property-provider': 2.0.13
- '@smithy/types': 2.4.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/credential-provider-ini@3.433.0(aws-crt@1.18.3):
- resolution: {integrity: sha512-T+YhCOORyA4+i4T86FfFCmi/jPsmLOP6GAtScHp/K8XzB9XuVvJSZ+T8SUKeW6/9G9z3Az7dqeBVLcMdC6fFDA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/credential-provider-env': 3.433.0
- '@aws-sdk/credential-provider-process': 3.433.0
- '@aws-sdk/credential-provider-sso': 3.433.0(aws-crt@1.18.3)
- '@aws-sdk/credential-provider-web-identity': 3.433.0
- '@aws-sdk/types': 3.433.0
+ '@aws-sdk/credential-provider-env': 3.451.0
+ '@aws-sdk/credential-provider-ini': 3.451.0(aws-crt@1.19.0)
+ '@aws-sdk/credential-provider-process': 3.451.0
+ '@aws-sdk/credential-provider-sso': 3.451.0(aws-crt@1.19.0)
+ '@aws-sdk/credential-provider-web-identity': 3.451.0
+ '@aws-sdk/types': 3.451.0
'@smithy/credential-provider-imds': 2.0.18
'@smithy/property-provider': 2.0.13
- '@smithy/shared-ini-file-loader': 2.2.2
- '@smithy/types': 2.4.0
+ '@smithy/shared-ini-file-loader': 2.2.4
+ '@smithy/types': 2.5.0
tslib: 2.6.2
transitivePeerDependencies:
- aws-crt
dev: false
- /@aws-sdk/credential-provider-ini@3.438.0:
- resolution: {integrity: sha512-WYPQR3pXoHJjn9/RMWipUhsUNFy6zhOiII6u8LJ5w84aNqIjV4+BdRYztRNGJD98jdtekhbkX0YKoSuZqP+unQ==}
+ /@aws-sdk/credential-provider-process@3.451.0:
+ resolution: {integrity: sha512-HQywSdKeD5PErcLLnZfSyCJO+6T+ZyzF+Lm/QgscSC+CbSUSIPi//s15qhBRVely/3KBV6AywxwNH+5eYgt4lQ==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/credential-provider-env': 3.433.0
- '@aws-sdk/credential-provider-process': 3.433.0
- '@aws-sdk/credential-provider-sso': 3.438.0
- '@aws-sdk/credential-provider-web-identity': 3.433.0
- '@aws-sdk/types': 3.433.0
- '@smithy/credential-provider-imds': 2.0.18
- '@smithy/property-provider': 2.0.13
- '@smithy/shared-ini-file-loader': 2.2.2
- '@smithy/types': 2.4.0
+ '@aws-sdk/types': 3.451.0
+ '@smithy/property-provider': 2.0.14
+ '@smithy/shared-ini-file-loader': 2.2.4
+ '@smithy/types': 2.5.0
+ tslib: 2.6.2
+ dev: false
+
+ /@aws-sdk/credential-provider-sso@3.451.0(aws-crt@1.19.0):
+ resolution: {integrity: sha512-Usm/N51+unOt8ID4HnQzxIjUJDrkAQ1vyTOC0gSEEJ7h64NSSPGD5yhN7il5WcErtRd3EEtT1a8/GTC5TdBctg==}
+ engines: {node: '>=14.0.0'}
+ dependencies:
+ '@aws-sdk/client-sso': 3.451.0(aws-crt@1.19.0)
+ '@aws-sdk/token-providers': 3.451.0(aws-crt@1.19.0)
+ '@aws-sdk/types': 3.451.0
+ '@smithy/property-provider': 2.0.14
+ '@smithy/shared-ini-file-loader': 2.2.4
+ '@smithy/types': 2.5.0
tslib: 2.6.2
transitivePeerDependencies:
- aws-crt
dev: false
- /@aws-sdk/credential-provider-node@3.433.0(aws-crt@1.18.3):
- resolution: {integrity: sha512-uOTBJszqGJIX5SrH2YdN501cv9rW4ghuSkasxI9DL+sVV5YRMd/bwu6I3PphRyK7z4dosDEbJ1xoIuVR/W04HQ==}
+ /@aws-sdk/credential-provider-web-identity@3.451.0:
+ resolution: {integrity: sha512-Xtg3Qw65EfDjWNG7o2xD6sEmumPfsy3WDGjk2phEzVg8s7hcZGxf5wYwe6UY7RJvlEKrU0rFA+AMn6Hfj5oOzg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/credential-provider-env': 3.433.0
- '@aws-sdk/credential-provider-ini': 3.433.0(aws-crt@1.18.3)
- '@aws-sdk/credential-provider-process': 3.433.0
- '@aws-sdk/credential-provider-sso': 3.433.0(aws-crt@1.18.3)
- '@aws-sdk/credential-provider-web-identity': 3.433.0
- '@aws-sdk/types': 3.433.0
- '@smithy/credential-provider-imds': 2.0.18
- '@smithy/property-provider': 2.0.13
- '@smithy/shared-ini-file-loader': 2.2.2
- '@smithy/types': 2.4.0
- tslib: 2.6.2
- transitivePeerDependencies:
- - aws-crt
- dev: false
-
- /@aws-sdk/credential-provider-node@3.438.0:
- resolution: {integrity: sha512-uaw3D2R0svyrC32qyZ2aOv/l0AT9eClh+eQsZJTQD3Kz9q+2VdeOBThQ8fsMfRtm26nUbZo6A/CRwxkm6okI+w==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/credential-provider-env': 3.433.0
- '@aws-sdk/credential-provider-ini': 3.438.0
- '@aws-sdk/credential-provider-process': 3.433.0
- '@aws-sdk/credential-provider-sso': 3.438.0
- '@aws-sdk/credential-provider-web-identity': 3.433.0
- '@aws-sdk/types': 3.433.0
- '@smithy/credential-provider-imds': 2.0.18
- '@smithy/property-provider': 2.0.13
- '@smithy/shared-ini-file-loader': 2.2.2
- '@smithy/types': 2.4.0
- tslib: 2.6.2
- transitivePeerDependencies:
- - aws-crt
- dev: false
-
- /@aws-sdk/credential-provider-process@3.433.0:
- resolution: {integrity: sha512-W7FcGlQjio9Y/PepcZGRyl5Bpwb0uWU7qIUCh+u4+q2mW4D5ZngXg8V/opL9/I/p4tUH9VXZLyLGwyBSkdhL+A==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.433.0
- '@smithy/property-provider': 2.0.13
- '@smithy/shared-ini-file-loader': 2.2.2
- '@smithy/types': 2.4.0
+ '@aws-sdk/types': 3.451.0
+ '@smithy/property-provider': 2.0.14
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@aws-sdk/credential-provider-sso@3.433.0(aws-crt@1.18.3):
- resolution: {integrity: sha512-vuc2X7q/1HUAO/NowfnNMpRDoHw8H2lyZZzUc0lmamy6PDrEFBi/VTm1nStGPuS9egCFrYlkRHsfp50ukYGa5w==}
+ /@aws-sdk/middleware-bucket-endpoint@3.451.0:
+ resolution: {integrity: sha512-KWyZ1JGnYz2QbHuJtYTP1BVnMOfVopR8rP8dTinVb/JR5HfAYz4imICJlJUbOYRjN7wpA3PrRI8dNRjrSBjWJg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/client-sso': 3.433.0(aws-crt@1.18.3)
- '@aws-sdk/token-providers': 3.433.0(aws-crt@1.18.3)
- '@aws-sdk/types': 3.433.0
- '@smithy/property-provider': 2.0.13
- '@smithy/shared-ini-file-loader': 2.2.2
- '@smithy/types': 2.4.0
- tslib: 2.6.2
- transitivePeerDependencies:
- - aws-crt
- dev: false
-
- /@aws-sdk/credential-provider-sso@3.438.0:
- resolution: {integrity: sha512-Xykli/64xR18cBV5P0XFxcH120omtfAjC/cFy/9nFU/+dPvbk0uu1yEOZYteWHyGGkPN4PkHmbh60GiUCLQkWQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/client-sso': 3.438.0
- '@aws-sdk/token-providers': 3.438.0
- '@aws-sdk/types': 3.433.0
- '@smithy/property-provider': 2.0.13
- '@smithy/shared-ini-file-loader': 2.2.2
- '@smithy/types': 2.4.0
- tslib: 2.6.2
- transitivePeerDependencies:
- - aws-crt
- dev: false
-
- /@aws-sdk/credential-provider-web-identity@3.433.0:
- resolution: {integrity: sha512-RlwjP1I5wO+aPpwyCp23Mk8nmRbRL33hqRASy73c4JA2z2YiRua+ryt6MalIxehhwQU6xvXUKulJnPG9VaMFZg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.433.0
- '@smithy/property-provider': 2.0.13
- '@smithy/types': 2.4.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/middleware-bucket-endpoint@3.433.0:
- resolution: {integrity: sha512-Lk1xIu2tWTRa1zDw5hCF1RrpWQYSodUhrS/q3oKz8IAoFqEy+lNaD5jx+fycuZb5EkE4IzWysT+8wVkd0mAnOg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.433.0
+ '@aws-sdk/types': 3.451.0
'@aws-sdk/util-arn-parser': 3.310.0
- '@smithy/node-config-provider': 2.1.3
- '@smithy/protocol-http': 3.0.8
- '@smithy/types': 2.4.0
+ '@smithy/node-config-provider': 2.1.5
+ '@smithy/protocol-http': 3.0.9
+ '@smithy/types': 2.5.0
'@smithy/util-config-provider': 2.0.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-expect-continue@3.433.0:
- resolution: {integrity: sha512-Uq2rPIsjz0CR2sulM/HyYr5WiqiefrSRLdwUZuA7opxFSfE808w5DBWSprHxbH3rbDSQR4nFiOiVYIH8Eth7nA==}
+ /@aws-sdk/middleware-expect-continue@3.451.0:
+ resolution: {integrity: sha512-vwG8o2Uk6biLDlOZnqXemsO4dS2HvrprUdxyouwu6hlzLFskg8nL122butn19JqXJKgcVLuSSLzT+xwqBWy2Rg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.433.0
- '@smithy/protocol-http': 3.0.8
- '@smithy/types': 2.4.0
+ '@aws-sdk/types': 3.451.0
+ '@smithy/protocol-http': 3.0.9
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-flexible-checksums@3.433.0:
- resolution: {integrity: sha512-Ptssx373+I7EzFUWjp/i/YiNFt6I6sDuRHz6DOUR9nmmRTlHHqmdcBXlJL2d9wwFxoBRCN8/PXGsTc/DJ4c95Q==}
+ /@aws-sdk/middleware-flexible-checksums@3.451.0:
+ resolution: {integrity: sha512-eOkpcC2zgAvqs1w7Yp5nsk9LBIj6qLU5kaZuZEBOiFbNKIrTnPo6dQuhgvDcKHD6Y5W/cUjSBiFMs/ROb5aoug==}
engines: {node: '>=14.0.0'}
dependencies:
'@aws-crypto/crc32': 3.0.0
'@aws-crypto/crc32c': 3.0.0
- '@aws-sdk/types': 3.433.0
+ '@aws-sdk/types': 3.451.0
'@smithy/is-array-buffer': 2.0.0
- '@smithy/protocol-http': 3.0.8
- '@smithy/types': 2.4.0
- '@smithy/util-utf8': 2.0.0
+ '@smithy/protocol-http': 3.0.9
+ '@smithy/types': 2.5.0
+ '@smithy/util-utf8': 2.0.2
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-host-header@3.433.0:
- resolution: {integrity: sha512-mBTq3UWv1UzeHG+OfUQ2MB/5GEkt5LTKFaUqzL7ESwzW8XtpBgXnjZvIwu3Vcd3sEetMwijwaGiJhY0ae/YyaA==}
+ /@aws-sdk/middleware-host-header@3.451.0:
+ resolution: {integrity: sha512-j8a5jAfhWmsK99i2k8oR8zzQgXrsJtgrLxc3js6U+525mcZytoiDndkWTmD5fjJ1byU1U2E5TaPq+QJeDip05Q==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.433.0
- '@smithy/protocol-http': 3.0.8
- '@smithy/types': 2.4.0
+ '@aws-sdk/types': 3.451.0
+ '@smithy/protocol-http': 3.0.9
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-location-constraint@3.433.0:
- resolution: {integrity: sha512-2YD860TGntwZifIUbxm+lFnNJJhByR/RB/+fV1I8oGKg+XX2rZU+94pRfHXRywoZKlCA0L+LGDA1I56jxrB9sw==}
+ /@aws-sdk/middleware-location-constraint@3.451.0:
+ resolution: {integrity: sha512-R4U2G7mybP0BMiQBJWTcB47g49F4PSXTiCsvMDp5WOEhpWvGQuO1ZIhTxCl5s5lgTSne063Os8W6KSdK2yG2TQ==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.433.0
- '@smithy/types': 2.4.0
+ '@aws-sdk/types': 3.451.0
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-logger@3.433.0:
- resolution: {integrity: sha512-We346Fb5xGonTGVZC9Nvqtnqy74VJzYuTLLiuuftA5sbNzftBDy/22QCfvYSTOAl3bvif+dkDUzQY2ihc5PwOQ==}
+ /@aws-sdk/middleware-logger@3.451.0:
+ resolution: {integrity: sha512-0kHrYEyVeB2QBfP6TfbI240aRtatLZtcErJbhpiNUb+CQPgEL3crIjgVE8yYiJumZ7f0jyjo8HLPkwD1/2APaw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.433.0
- '@smithy/types': 2.4.0
+ '@aws-sdk/types': 3.451.0
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-recursion-detection@3.433.0:
- resolution: {integrity: sha512-HEvYC9PQlWY/ccUYtLvAlwwf1iCif2TSAmLNr3YTBRVa98x6jKL0hlCrHWYklFeqOGSKy6XhE+NGJMUII0/HaQ==}
+ /@aws-sdk/middleware-recursion-detection@3.451.0:
+ resolution: {integrity: sha512-J6jL6gJ7orjHGM70KDRcCP7so/J2SnkN4vZ9YRLTeeZY6zvBuHDjX8GCIgSqPn/nXFXckZO8XSnA7u6+3TAT0w==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.433.0
- '@smithy/protocol-http': 3.0.8
- '@smithy/types': 2.4.0
+ '@aws-sdk/types': 3.451.0
+ '@smithy/protocol-http': 3.0.9
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-sdk-s3@3.433.0:
- resolution: {integrity: sha512-mkn3DiSuMVh4NTLsduC42Av+ApcOor52LMoQY0Wc6M5Mx7Xd05U+G1j8sjI9n/1bs5cZ/PoeRYJ/9bL1Xxznnw==}
+ /@aws-sdk/middleware-sdk-s3@3.451.0:
+ resolution: {integrity: sha512-XF4Cw8HrYUwGLKOqKtWs6ss1WXoxvQUcgGLACGSqn9a0p51446NiS5671x7qJUsfBuygdKlIKcOc8pPr9a+5Ow==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.433.0
+ '@aws-sdk/types': 3.451.0
'@aws-sdk/util-arn-parser': 3.310.0
- '@smithy/protocol-http': 3.0.8
- '@smithy/smithy-client': 2.1.12
- '@smithy/types': 2.4.0
+ '@smithy/protocol-http': 3.0.9
+ '@smithy/smithy-client': 2.1.15
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-sdk-sts@3.433.0:
- resolution: {integrity: sha512-ORYbJnBejUyonFl5FwIqhvI3Cq6sAp9j+JpkKZtFNma9tFPdrhmYgfCeNH32H/wGTQV/tUoQ3luh0gA4cuk6DA==}
+ /@aws-sdk/middleware-sdk-sts@3.451.0:
+ resolution: {integrity: sha512-UJ6UfVUEgp0KIztxpAeelPXI5MLj9wUtUCqYeIMP7C1ZhoEMNm3G39VLkGN43dNhBf1LqjsV9jkKMZbVfYXuwg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/middleware-signing': 3.433.0
- '@aws-sdk/types': 3.433.0
- '@smithy/types': 2.4.0
+ '@aws-sdk/middleware-signing': 3.451.0
+ '@aws-sdk/types': 3.451.0
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-signing@3.433.0:
- resolution: {integrity: sha512-jxPvt59NZo/epMNLNTu47ikmP8v0q217I6bQFGJG7JVFnfl36zDktMwGw+0xZR80qiK47/2BWrNpta61Zd2FxQ==}
+ /@aws-sdk/middleware-signing@3.451.0:
+ resolution: {integrity: sha512-s5ZlcIoLNg1Huj4Qp06iKniE8nJt/Pj1B/fjhWc6cCPCM7XJYUCejCnRh6C5ZJoBEYodjuwZBejPc1Wh3j+znA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.433.0
- '@smithy/property-provider': 2.0.13
- '@smithy/protocol-http': 3.0.8
+ '@aws-sdk/types': 3.451.0
+ '@smithy/property-provider': 2.0.14
+ '@smithy/protocol-http': 3.0.9
'@smithy/signature-v4': 2.0.12
- '@smithy/types': 2.4.0
- '@smithy/util-middleware': 2.0.5
+ '@smithy/types': 2.5.0
+ '@smithy/util-middleware': 2.0.6
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-ssec@3.433.0:
- resolution: {integrity: sha512-2AMaPx0kYfCiekxoL7aqFqSSoA9du+yI4zefpQNLr+1cZOerYiDxdsZ4mbqStR1CVFaX6U6hrYokXzjInsvETw==}
+ /@aws-sdk/middleware-ssec@3.451.0:
+ resolution: {integrity: sha512-hDkeBUiRsvuDbvsPha0/uJHE680WDzjAOoE6ZnLBoWsw7ry+Bw1ULMj0sCmpBVrQ7Gpivi/6zbezhClVmt3ITw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.433.0
- '@smithy/types': 2.4.0
+ '@aws-sdk/types': 3.451.0
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-user-agent@3.433.0:
- resolution: {integrity: sha512-jMgA1jHfisBK4oSjMKrtKEZf0sl2vzADivkFmyZFzORpSZxBnF6hC21RjaI+70LJLcc9rSCzLgcoz5lHb9LLDg==}
+ /@aws-sdk/middleware-user-agent@3.451.0:
+ resolution: {integrity: sha512-8NM/0JiKLNvT9wtAQVl1DFW0cEO7OvZyLSUBLNLTHqyvOZxKaZ8YFk7d8PL6l76LeUKRxq4NMxfZQlUIRe0eSA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.433.0
- '@aws-sdk/util-endpoints': 3.433.0
- '@smithy/protocol-http': 3.0.8
- '@smithy/types': 2.4.0
+ '@aws-sdk/types': 3.451.0
+ '@aws-sdk/util-endpoints': 3.451.0
+ '@smithy/protocol-http': 3.0.9
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-user-agent@3.438.0:
- resolution: {integrity: sha512-a+xHT1wOxT6EA6YyLmrfaroKWOkwwyiktUfXKM0FsUutGzNi4fKhb5NZ2al58NsXzHgHFrasSDp+Lqbd/X2cEw==}
+ /@aws-sdk/region-config-resolver@3.451.0:
+ resolution: {integrity: sha512-3iMf4OwzrFb4tAAmoROXaiORUk2FvSejnHIw/XHvf/jjR4EqGGF95NZP/n/MeFZMizJWVssrwS412GmoEyoqhg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.433.0
- '@aws-sdk/util-endpoints': 3.438.0
- '@smithy/protocol-http': 3.0.8
- '@smithy/types': 2.4.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/region-config-resolver@3.433.0:
- resolution: {integrity: sha512-xpjRjCZW+CDFdcMmmhIYg81ST5UAnJh61IHziQEk0FXONrg4kjyYPZAOjEdzXQ+HxJQuGQLKPhRdzxmQnbX7pg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@smithy/node-config-provider': 2.1.3
- '@smithy/types': 2.4.0
+ '@smithy/node-config-provider': 2.1.5
+ '@smithy/types': 2.5.0
'@smithy/util-config-provider': 2.0.0
- '@smithy/util-middleware': 2.0.5
+ '@smithy/util-middleware': 2.0.6
tslib: 2.6.2
dev: false
- /@aws-sdk/s3-presigned-post@3.438.0:
- resolution: {integrity: sha512-4Pk2hFpcH9vaPjEzvWgQ1wMlbd+jOScuGLb0goP8CeMRr6EsAClcJUctkNNMhx+dpuMiWvvDZEKd2Y6MsLWpaQ==}
+ /@aws-sdk/s3-presigned-post@3.451.0:
+ resolution: {integrity: sha512-gYm0GHgEfmLg5UMH9kQIvDcqkyifLbBWRDQZFMrxM0PZWTHydxud5fXawHQlrMM7olBRhVu9VEUp0Vg+Qx5D4A==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/client-s3': 3.438.0
- '@aws-sdk/types': 3.433.0
- '@aws-sdk/util-format-url': 3.433.0
- '@smithy/middleware-endpoint': 2.1.3
+ '@aws-sdk/client-s3': 3.451.0(aws-crt@1.19.0)
+ '@aws-sdk/types': 3.451.0
+ '@aws-sdk/util-format-url': 3.451.0
+ '@smithy/middleware-endpoint': 2.2.0
'@smithy/signature-v4': 2.0.12
- '@smithy/types': 2.4.0
+ '@smithy/types': 2.5.0
'@smithy/util-hex-encoding': 2.0.0
- '@smithy/util-utf8': 2.0.0
+ '@smithy/util-utf8': 2.0.2
tslib: 2.6.2
transitivePeerDependencies:
- aws-crt
dev: false
- /@aws-sdk/s3-request-presigner@3.433.0:
- resolution: {integrity: sha512-mR5+0iZH5GeRWAkRJKgCs4RN0RfS6/7sLgAJxItX+LL4O4jiGodYqm++RUvRqcZuZDGZ5wFs9CSMA++1YSxeew==}
+ /@aws-sdk/s3-request-presigner@3.451.0:
+ resolution: {integrity: sha512-UVe9E3qun3smKeHK05Qlj4MMWY10lMZjmuHLqOC+AzqqCY/3UuqkgSiZeNRTAX0nIA0tJKlYIZBSyyQmofiFeQ==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/signature-v4-multi-region': 3.433.0
- '@aws-sdk/types': 3.433.0
- '@aws-sdk/util-format-url': 3.433.0
- '@smithy/middleware-endpoint': 2.1.3
- '@smithy/protocol-http': 3.0.8
- '@smithy/smithy-client': 2.1.12
- '@smithy/types': 2.4.0
+ '@aws-sdk/signature-v4-multi-region': 3.451.0
+ '@aws-sdk/types': 3.451.0
+ '@aws-sdk/util-format-url': 3.451.0
+ '@smithy/middleware-endpoint': 2.2.0
+ '@smithy/protocol-http': 3.0.9
+ '@smithy/smithy-client': 2.1.15
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@aws-sdk/signature-v4-multi-region@3.433.0:
- resolution: {integrity: sha512-wl2j1dos4VOKFawbapPm/0CNa3cIgpJXbEx+sp+DI3G8tSuP3c5UGtm0pXjM85egxZulhHVK1RVde0iD8j63pQ==}
+ /@aws-sdk/signature-v4-multi-region@3.451.0:
+ resolution: {integrity: sha512-qQKY7/txeNUTLyRL3WxUWEwaZ5sf76EIZgu9kLaR96cAYSxwQi/qQB3ijbfD6u7sJIA8aROMxeYK0VmRsQg0CA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.433.0
- '@smithy/protocol-http': 3.0.8
+ '@aws-sdk/types': 3.451.0
+ '@smithy/protocol-http': 3.0.9
'@smithy/signature-v4': 2.0.12
- '@smithy/types': 2.4.0
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@aws-sdk/signature-v4-multi-region@3.437.0:
- resolution: {integrity: sha512-MmrqudssOs87JgVg7HGVdvJws/t4kcOrJJd+975ki+DPeSoyK2U4zBDfDkJ+n0tFuZBs3sLwLh0QXE7BV28rRA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.433.0
- '@smithy/protocol-http': 3.0.8
- '@smithy/signature-v4': 2.0.12
- '@smithy/types': 2.4.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/token-providers@3.433.0(aws-crt@1.18.3):
- resolution: {integrity: sha512-Q6aYVaQKB+CkBLHQQlN8MHVpOzZv9snRfVz7SxIpdbHkRuGEHiLliCY3fg6Sonvu3AKEPERPuHcaC75tnNpOBw==}
+ /@aws-sdk/token-providers@3.451.0(aws-crt@1.19.0):
+ resolution: {integrity: sha512-ij1L5iUbn6CwxVOT1PG4NFjsrsKN9c4N1YEM0lkl6DwmaNOscjLKGSNyj9M118vSWsOs1ZDbTwtj++h0O/BWrQ==}
engines: {node: '>=14.0.0'}
dependencies:
'@aws-crypto/sha256-browser': 3.0.0
'@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/middleware-host-header': 3.433.0
- '@aws-sdk/middleware-logger': 3.433.0
- '@aws-sdk/middleware-recursion-detection': 3.433.0
- '@aws-sdk/middleware-user-agent': 3.433.0
- '@aws-sdk/types': 3.433.0
- '@aws-sdk/util-endpoints': 3.433.0
- '@aws-sdk/util-user-agent-browser': 3.433.0
- '@aws-sdk/util-user-agent-node': 3.433.0(aws-crt@1.18.3)
- '@smithy/config-resolver': 2.0.16
- '@smithy/fetch-http-handler': 2.2.4
- '@smithy/hash-node': 2.0.12
- '@smithy/invalid-dependency': 2.0.12
- '@smithy/middleware-content-length': 2.0.14
- '@smithy/middleware-endpoint': 2.1.3
- '@smithy/middleware-retry': 2.0.18
- '@smithy/middleware-serde': 2.0.12
- '@smithy/middleware-stack': 2.0.6
- '@smithy/node-config-provider': 2.1.3
- '@smithy/node-http-handler': 2.1.8
- '@smithy/property-provider': 2.0.13
- '@smithy/protocol-http': 3.0.8
- '@smithy/shared-ini-file-loader': 2.2.2
- '@smithy/smithy-client': 2.1.12
- '@smithy/types': 2.4.0
- '@smithy/url-parser': 2.0.12
- '@smithy/util-base64': 2.0.0
+ '@aws-sdk/middleware-host-header': 3.451.0
+ '@aws-sdk/middleware-logger': 3.451.0
+ '@aws-sdk/middleware-recursion-detection': 3.451.0
+ '@aws-sdk/middleware-user-agent': 3.451.0
+ '@aws-sdk/region-config-resolver': 3.451.0
+ '@aws-sdk/types': 3.451.0
+ '@aws-sdk/util-endpoints': 3.451.0
+ '@aws-sdk/util-user-agent-browser': 3.451.0
+ '@aws-sdk/util-user-agent-node': 3.451.0(aws-crt@1.19.0)
+ '@smithy/config-resolver': 2.0.18
+ '@smithy/fetch-http-handler': 2.2.6
+ '@smithy/hash-node': 2.0.15
+ '@smithy/invalid-dependency': 2.0.13
+ '@smithy/middleware-content-length': 2.0.15
+ '@smithy/middleware-endpoint': 2.2.0
+ '@smithy/middleware-retry': 2.0.20
+ '@smithy/middleware-serde': 2.0.13
+ '@smithy/middleware-stack': 2.0.7
+ '@smithy/node-config-provider': 2.1.5
+ '@smithy/node-http-handler': 2.1.9
+ '@smithy/property-provider': 2.0.14
+ '@smithy/protocol-http': 3.0.9
+ '@smithy/shared-ini-file-loader': 2.2.4
+ '@smithy/smithy-client': 2.1.15
+ '@smithy/types': 2.5.0
+ '@smithy/url-parser': 2.0.13
+ '@smithy/util-base64': 2.0.1
'@smithy/util-body-length-browser': 2.0.0
'@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.16
- '@smithy/util-defaults-mode-node': 2.0.21
- '@smithy/util-retry': 2.0.5
- '@smithy/util-utf8': 2.0.0
+ '@smithy/util-defaults-mode-browser': 2.0.19
+ '@smithy/util-defaults-mode-node': 2.0.25
+ '@smithy/util-endpoints': 1.0.4
+ '@smithy/util-retry': 2.0.6
+ '@smithy/util-utf8': 2.0.2
tslib: 2.6.2
transitivePeerDependencies:
- aws-crt
dev: false
- /@aws-sdk/token-providers@3.438.0:
- resolution: {integrity: sha512-G2fUfTtU6/1ayYRMu0Pd9Ln4qYSvwJOWCqJMdkDgvXSwdgcOSOLsnAIk1AHGJDAvgLikdCzuyOsdJiexr9Vnww==}
+ /@aws-sdk/types@3.451.0:
+ resolution: {integrity: sha512-rhK+qeYwCIs+laJfWCcrYEjay2FR/9VABZJ2NRM89jV/fKqGVQR52E5DQqrI+oEIL5JHMhhnr4N4fyECMS35lw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/middleware-host-header': 3.433.0
- '@aws-sdk/middleware-logger': 3.433.0
- '@aws-sdk/middleware-recursion-detection': 3.433.0
- '@aws-sdk/middleware-user-agent': 3.438.0
- '@aws-sdk/region-config-resolver': 3.433.0
- '@aws-sdk/types': 3.433.0
- '@aws-sdk/util-endpoints': 3.438.0
- '@aws-sdk/util-user-agent-browser': 3.433.0
- '@aws-sdk/util-user-agent-node': 3.437.0
- '@smithy/config-resolver': 2.0.16
- '@smithy/fetch-http-handler': 2.2.4
- '@smithy/hash-node': 2.0.12
- '@smithy/invalid-dependency': 2.0.12
- '@smithy/middleware-content-length': 2.0.14
- '@smithy/middleware-endpoint': 2.1.3
- '@smithy/middleware-retry': 2.0.18
- '@smithy/middleware-serde': 2.0.12
- '@smithy/middleware-stack': 2.0.6
- '@smithy/node-config-provider': 2.1.3
- '@smithy/node-http-handler': 2.1.8
- '@smithy/property-provider': 2.0.13
- '@smithy/protocol-http': 3.0.8
- '@smithy/shared-ini-file-loader': 2.2.2
- '@smithy/smithy-client': 2.1.12
- '@smithy/types': 2.4.0
- '@smithy/url-parser': 2.0.12
- '@smithy/util-base64': 2.0.0
- '@smithy/util-body-length-browser': 2.0.0
- '@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.16
- '@smithy/util-defaults-mode-node': 2.0.21
- '@smithy/util-endpoints': 1.0.2
- '@smithy/util-retry': 2.0.5
- '@smithy/util-utf8': 2.0.0
- tslib: 2.6.2
- transitivePeerDependencies:
- - aws-crt
- dev: false
-
- /@aws-sdk/types@3.433.0:
- resolution: {integrity: sha512-0jEE2mSrNDd8VGFjTc1otYrwYPIkzZJEIK90ZxisKvQ/EURGBhNzWn7ejWB9XCMFT6XumYLBR0V9qq5UPisWtA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@smithy/types': 2.4.0
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
@@ -1931,30 +1664,22 @@ packages:
tslib: 2.6.2
dev: false
- /@aws-sdk/util-endpoints@3.433.0:
- resolution: {integrity: sha512-LFNUh9FH7RMtYjSjPGz9lAJQMzmJ3RcXISzc5X5k2R/9mNwMK7y1k2VAfvx+RbuDbll6xwsXlgv6QHcxVdF2zw==}
+ /@aws-sdk/util-endpoints@3.451.0:
+ resolution: {integrity: sha512-giqLGBTnRIcKkDqwU7+GQhKbtJ5Ku35cjGQIfMyOga6pwTBUbaK0xW1Sdd8sBQ1GhApscnChzI9o/R9x0368vw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.433.0
+ '@aws-sdk/types': 3.451.0
+ '@smithy/util-endpoints': 1.0.4
tslib: 2.6.2
dev: false
- /@aws-sdk/util-endpoints@3.438.0:
- resolution: {integrity: sha512-6VyPTq1kN3GWxwFt5DdZfOsr6cJZPLjWh0troY/0uUv3hK74C9o3Y0Xf/z8UAUvQFkVqZse12O0/BgPVMImvfA==}
+ /@aws-sdk/util-format-url@3.451.0:
+ resolution: {integrity: sha512-gmcqSFTIISU9iN6rSbc8HVqB9ACluPbo4mS0ztkk9DaDz5zK/YxoKBJSfqkZFidMzxYiXeWruDCxD8ZgYRn6ug==}
engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.433.0
- '@smithy/util-endpoints': 1.0.2
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-format-url@3.433.0:
- resolution: {integrity: sha512-Z6T7I4hELoQ4eeIuKIKx+52B9bc3SCPhjgMcFAFQeesjmHAr0drHyoGNJIat6ckvgI6zzFaeaBZTvWDA2hyDkA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.433.0
- '@smithy/querystring-builder': 2.0.12
- '@smithy/types': 2.4.0
+ '@aws-sdk/types': 3.451.0
+ '@smithy/querystring-builder': 2.0.13
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
@@ -1965,17 +1690,17 @@ packages:
tslib: 2.6.2
dev: false
- /@aws-sdk/util-user-agent-browser@3.433.0:
- resolution: {integrity: sha512-2Cf/Lwvxbt5RXvWFXrFr49vXv0IddiUwrZoAiwhDYxvsh+BMnh+NUFot+ZQaTrk/8IPZVDeLPWZRdVy00iaVXQ==}
+ /@aws-sdk/util-user-agent-browser@3.451.0:
+ resolution: {integrity: sha512-Ws5mG3J0TQifH7OTcMrCTexo7HeSAc3cBgjfhS/ofzPUzVCtsyg0G7I6T7wl7vJJETix2Kst2cpOsxygPgPD9w==}
dependencies:
- '@aws-sdk/types': 3.433.0
- '@smithy/types': 2.4.0
+ '@aws-sdk/types': 3.451.0
+ '@smithy/types': 2.5.0
bowser: 2.11.0
tslib: 2.6.2
dev: false
- /@aws-sdk/util-user-agent-node@3.433.0(aws-crt@1.18.3):
- resolution: {integrity: sha512-yT1tO4MbbsUBLl5+S+jVv8wxiAtP5TKjKib9B2KQ2x0OtWWTrIf2o+IZK8va+zQqdV4MVMjezdxdE20hOdB4yQ==}
+ /@aws-sdk/util-user-agent-node@3.451.0(aws-crt@1.19.0):
+ resolution: {integrity: sha512-TBzm6P+ql4mkGFAjPlO1CI+w3yUT+NulaiALjl/jNX/nnUp6HsJsVxJf4nVFQTG5KRV0iqMypcs7I3KIhH+LmA==}
engines: {node: '>=14.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
@@ -1983,25 +1708,10 @@ packages:
aws-crt:
optional: true
dependencies:
- '@aws-sdk/types': 3.433.0
- '@smithy/node-config-provider': 2.1.3
- '@smithy/types': 2.4.0
- aws-crt: 1.18.3
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-user-agent-node@3.437.0:
- resolution: {integrity: sha512-JVEcvWaniamtYVPem4UthtCNoTBCfFTwYj7Y3CrWZ2Qic4TqrwLkAfaBGtI2TGrhIClVr77uzLI6exqMTN7orA==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- aws-crt: '>=1.0.0'
- peerDependenciesMeta:
- aws-crt:
- optional: true
- dependencies:
- '@aws-sdk/types': 3.433.0
- '@smithy/node-config-provider': 2.1.3
- '@smithy/types': 2.4.0
+ '@aws-sdk/types': 3.451.0
+ '@smithy/node-config-provider': 2.1.5
+ '@smithy/types': 2.5.0
+ aws-crt: 1.19.0
tslib: 2.6.2
dev: false
@@ -2025,8 +1735,8 @@ packages:
'@babel/highlight': 7.22.20
chalk: 2.4.2
- /@babel/compat-data@7.23.2:
- resolution: {integrity: sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==}
+ /@babel/compat-data@7.23.3:
+ resolution: {integrity: sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==}
engines: {node: '>=6.9.0'}
/@babel/core@7.23.2:
@@ -2050,12 +1760,45 @@ packages:
semver: 6.3.1
transitivePeerDependencies:
- supports-color
+ dev: true
+
+ /@babel/core@7.23.3:
+ resolution: {integrity: sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@ampproject/remapping': 2.2.1
+ '@babel/code-frame': 7.22.13
+ '@babel/generator': 7.23.3
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3)
+ '@babel/helpers': 7.23.2
+ '@babel/parser': 7.23.3
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.3
+ '@babel/types': 7.23.3
+ convert-source-map: 2.0.0
+ debug: 4.3.4
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
/@babel/generator@7.23.0:
resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
+ '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/trace-mapping': 0.3.20
+ jsesc: 2.5.2
+ dev: true
+
+ /@babel/generator@7.23.3:
+ resolution: {integrity: sha512-keeZWAV4LU3tW0qRi19HRpabC/ilM0HRBBzf9/k8FFiG4KVpiv0FIy4hHfLfFQZNhziCTPTmd59zoyv6DNISzg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.23.3
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.20
jsesc: 2.5.2
@@ -2064,58 +1807,58 @@ packages:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
/@babel/helper-builder-binary-assignment-operator-visitor@7.22.15:
resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
/@babel/helper-compilation-targets@7.22.15:
resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/compat-data': 7.23.2
+ '@babel/compat-data': 7.23.3
'@babel/helper-validator-option': 7.22.15
browserslist: 4.22.1
lru-cache: 5.1.1
semver: 6.3.1
- /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.2):
+ /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.3):
resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
- /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.2):
+ /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.3):
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
- /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.2):
+ /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.3):
resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-compilation-targets': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4
@@ -2133,25 +1876,25 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.22.15
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
/@babel/helper-member-expression-to-functions@7.23.0:
resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
/@babel/helper-module-imports@7.22.15:
resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
/@babel/helper-module-transforms@7.23.0(@babel/core@7.23.2):
resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==}
@@ -2165,35 +1908,49 @@ packages:
'@babel/helper-simple-access': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.20
+ dev: true
+
+ /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.3
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-simple-access': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-validator-identifier': 7.22.20
/@babel/helper-optimise-call-expression@7.22.5:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
/@babel/helper-plugin-utils@7.22.5:
resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
engines: {node: '>=6.9.0'}
- /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.2):
+ /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.3):
resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-wrap-function': 7.22.20
- /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.2):
+ /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.3):
resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
@@ -2202,19 +1959,19 @@ packages:
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
/@babel/helper-skip-transparent-expression-wrappers@7.22.5:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
/@babel/helper-split-export-declaration@7.22.6:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
/@babel/helper-string-parser@7.22.5:
resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
@@ -2234,15 +1991,15 @@ packages:
dependencies:
'@babel/helper-function-name': 7.23.0
'@babel/template': 7.22.15
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
/@babel/helpers@7.23.2:
resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.22.15
- '@babel/traverse': 7.23.2
- '@babel/types': 7.23.0
+ '@babel/traverse': 7.23.3
+ '@babel/types': 7.23.3
transitivePeerDependencies:
- supports-color
@@ -2259,660 +2016,697 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.23.2):
- resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==}
+ /@babel/parser@7.23.3:
+ resolution: {integrity: sha512-uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBaw==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ '@babel/types': 7.23.3
+
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.23.2):
- resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==}
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.2)
+ '@babel/plugin-transform-optional-chaining': 7.23.3(@babel/core@7.23.3)
- /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.2):
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.3
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.3):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.2):
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.3):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3)
dev: false
- /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.2):
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.3):
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3)
dev: false
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.3):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.2):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.3):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.2):
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.3):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.2):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.3):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.2):
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.3):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.2):
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.3):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.2):
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.3):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.23.2):
+ /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.23.3):
resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
+ /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
+ /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.2):
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.3):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.2):
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.3):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.2):
+ /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.3):
resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.2):
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.3):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.2):
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.3):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.2):
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.3):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.2):
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.3):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.2):
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.3):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.2):
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.3):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.2):
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.3):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.2):
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.3):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.23.2):
+ /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.23.3):
resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.2):
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.3):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==}
+ /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-async-generator-functions@7.23.2(@babel/core@7.23.2):
- resolution: {integrity: sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==}
+ /@babel/plugin-transform-async-generator-functions@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-59GsVNavGxAXCDDbakWSMJhajASb4kBCqDjqJsv+p5nKdbz7istmZ3HrX3L2LuiI80+zsOADCvooqQH3qGCucQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.3)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.3)
- /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
+ /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.3)
- /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==}
+ /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.23.2):
- resolution: {integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==}
+ /@babel/plugin-transform-block-scoping@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-QPZxHrThbQia7UdvfpaRRlq/J9ciz1J4go0k+lPBXbgaNeY7IQrBj/9ceWjvMMI07/ZBzHl/F0R/2K0qH7jCVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==}
+ /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==}
+ /@babel/plugin-transform-class-static-block@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-PENDVxdr7ZxKPyi5Ffc0LjXdnJyrJxyqF5T5YjlVg4a0VFfQHW0r8iAtRiDXkfHlu1wwcvdtnndGYIeJLSuRMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.3)
- /@babel/plugin-transform-classes@7.22.15(@babel/core@7.23.2):
- resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==}
+ /@babel/plugin-transform-classes@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-FGEQmugvAEu2QtgtU0uTASXevfLMFfBeVCIIdcQhn/uBQsMTjBajdnAtanQlOcuihWh10PZ7+HWvc7NtBwP74w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-compilation-targets': 7.22.15
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
- /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
+ /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
'@babel/template': 7.22.15
- /@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.23.2):
- resolution: {integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==}
+ /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==}
+ /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==}
+ /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==}
+ /@babel/plugin-transform-dynamic-import@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-vTG+cTGxPFou12Rj7ll+eD5yWeNl5/8xvQvF08y5Gv3v4mZQoyFf8/n9zg4q5vvCWt5jmgymfzMAldO7orBn7A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.3)
- /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==}
+ /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==}
+ /@babel/plugin-transform-export-namespace-from@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-yCLhW34wpJWRdTxxWtFZASJisihrfyMOTOQexhVzA78jlU+dH7Dw+zQgcPepQ5F3C6bAIiblZZ+qBggJdHiBAg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.3)
- /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.23.2):
+ /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.23.3):
resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.3)
dev: false
- /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.23.2):
- resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==}
+ /@babel/plugin-transform-for-of@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==}
+ /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-compilation-targets': 7.22.15
'@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==}
+ /@babel/plugin-transform-json-strings@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-H9Ej2OiISIZowZHaBwF0tsJOih1PftXJtE8EWqlEIwpc7LMTGq0rPOrywKLQ4nefzx8/HMR0D3JGXoMHYvhi0A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.3)
- /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==}
+ /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==}
+ /@babel/plugin-transform-logical-assignment-operators@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-+pD5ZbxofyOygEp+zZAfujY2ShNCXRpDRIPOiBmTO693hhyOEteZgl876Xs9SAHPQpcV0vz8LvA/T+w8AzyX8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.3)
- /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==}
+ /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.23.2):
- resolution: {integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==}
+ /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.23.2):
- resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==}
+ /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-simple-access': 7.22.5
- /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.23.2):
- resolution: {integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==}
+ /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2)
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-identifier': 7.22.20
- /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==}
+ /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.2):
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.3):
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==}
+ /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==}
+ /@babel/plugin-transform-nullish-coalescing-operator@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-xzg24Lnld4DYIdysyf07zJ1P+iIfJpxtVFOzX4g+bsJ3Ng5Le7rXx9KwqKzuyaUeRnt+I1EICwQITqc0E2PmpA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3)
- /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==}
+ /@babel/plugin-transform-numeric-separator@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-s9GO7fIBi/BLsZ0v3Rftr6Oe4t0ctJ8h4CCXfPoEJwmvAPMyNrfkOOJzm6b9PX9YXcCJWWQd/sBF/N26eBiMVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.3)
- /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.23.2):
- resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==}
+ /@babel/plugin-transform-object-rest-spread@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-VxHt0ANkDmu8TANdE9Kc0rndo/ccsmfe2Cx2y5sI4hu3AukHQ5wAu4cM7j3ba8B9548ijVyclBU+nuDQftZsog==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.23.2
- '@babel/core': 7.23.2
+ '@babel/compat-data': 7.23.3
+ '@babel/core': 7.23.3
'@babel/helper-compilation-targets': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.3)
- /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==}
+ /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3)
- /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==}
+ /@babel/plugin-transform-optional-catch-binding@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-LxYSb0iLjUamfm7f1D7GpiS4j0UAC8AOiehnsGAP8BEsIX8EOi3qV6bbctw8M7ZvLtcoZfZX5Z7rN9PlWk0m5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3)
- /@babel/plugin-transform-optional-chaining@7.23.0(@babel/core@7.23.2):
- resolution: {integrity: sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==}
+ /@babel/plugin-transform-optional-chaining@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-zvL8vIfIUgMccIAK1lxjvNv572JHFJIKb4MWBz5OGdBQA0fB0Xluix5rmOby48exiJc987neOmP/m9Fnpkz3Tg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3)
- /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.23.2):
- resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==}
+ /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==}
+ /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==}
+ /@babel/plugin-transform-private-property-in-object@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-a5m2oLNFyje2e/rGKjVfAELTVI5mbA0FeZpBnkOWWV7eSmKQ+T/XW0Vf+29ScLzSxX+rnsarvU0oie/4m6hkxA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.3)
- /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
+ /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.2):
+ /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.3):
resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.3)
dev: true
/@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.23.2):
@@ -2925,6 +2719,16 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.23.3):
+ resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.3
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.23.2):
resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==}
engines: {node: '>=6.9.0'}
@@ -2935,268 +2739,278 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.2):
+ /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.23.3):
+ resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.3
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.3):
resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2)
- '@babel/types': 7.23.0
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.3)
+ '@babel/types': 7.23.3
dev: true
- /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.23.2):
- resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==}
+ /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
regenerator-transform: 0.15.2
- /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==}
+ /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==}
+ /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==}
+ /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==}
+ /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==}
+ /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==}
+ /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.23.2):
- resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==}
+ /@babel/plugin-transform-typescript@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-ogV0yWnq38CFwH20l2Afz0dfKuZBx9o/Y2Rmh5vuSS0YD1hswgEgTfyTzuSrT2q9btmHRSqYoSfwFUVaC1M1Jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.3)
- /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.23.2):
- resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==}
+ /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==}
+ /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==}
+ /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==}
+ /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/preset-env@7.23.2(@babel/core@7.23.2):
- resolution: {integrity: sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==}
+ /@babel/preset-env@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-ovzGc2uuyNfNAs/jyjIGxS8arOHS5FENZaNn4rtE7UdKMMkqHCvboHfcuhWLZNX5cB44QfcGNWjaevxMzzMf+Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.23.2
- '@babel/core': 7.23.2
+ '@babel/compat-data': 7.23.3
+ '@babel/core': 7.23.3
'@babel/helper-compilation-targets': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.22.15
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.23.2)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.23.2)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.2)
- '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-async-generator-functions': 7.23.2(@babel/core@7.23.2)
- '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.2)
- '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.2)
- '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.2)
- '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.23.2)
- '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.23.2)
- '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2)
- '@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.23.2)
- '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.23.2)
- '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.2)
- '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2)
- '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.23.2)
- '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.23.2)
- '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.23.2)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.2)
- '@babel/types': 7.23.0
- babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.2)
- babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.2)
- babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.2)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.3)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.3)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.3)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.3)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.3)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.3)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.3)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.3)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.3)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.3)
+ '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-async-generator-functions': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-block-scoping': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-class-static-block': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-classes': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-dynamic-import': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-export-namespace-from': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-for-of': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-json-strings': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-logical-assignment-operators': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.3)
+ '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-numeric-separator': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-object-rest-spread': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-optional-catch-binding': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-optional-chaining': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-private-property-in-object': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.3)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.3)
+ babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.3)
+ babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.3)
+ babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.3)
core-js-compat: 3.33.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- /@babel/preset-flow@7.22.15(@babel/core@7.23.2):
+ /@babel/preset-flow@7.22.15(@babel/core@7.23.3):
resolution: {integrity: sha512-dB5aIMqpkgbTfN5vDdTRPzjqtWiZcRESNR88QYnoPR+bmdYoluOzMX9tQerTv0XzSgZYctPfO1oc0N5zdog1ew==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.22.15
- '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.3)
dev: false
- /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.2):
+ /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.3):
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
esutils: 2.0.3
- /@babel/preset-typescript@7.23.2(@babel/core@7.23.2):
- resolution: {integrity: sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA==}
+ /@babel/preset-typescript@7.23.3(@babel/core@7.23.3):
+ resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.22.15
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2)
- '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-typescript': 7.23.3(@babel/core@7.23.3)
- /@babel/register@7.22.15(@babel/core@7.23.2):
+ /@babel/register@7.22.15(@babel/core@7.23.3):
resolution: {integrity: sha512-V3Q3EqoQdn65RCgTLwauZaTfd1ShhwPmbBv+1dkZV/HpCGMKVyn6oFcRlI7RaKqiDQjX2Qd3AuoEguBgdjIKlg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -3218,21 +3032,39 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.22.13
- '@babel/parser': 7.23.0
- '@babel/types': 7.23.0
+ '@babel/parser': 7.23.3
+ '@babel/types': 7.23.3
/@babel/traverse@7.23.2:
resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.22.13
- '@babel/generator': 7.23.0
+ '@babel/generator': 7.23.3
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.23.0
- '@babel/types': 7.23.0
+ '@babel/parser': 7.23.3
+ '@babel/types': 7.23.3
+ debug: 4.3.4
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/traverse@7.23.3:
+ resolution: {integrity: sha512-+K0yF1/9yR0oHdE0StHuEj3uTPzwwbrLGfNOndVJVV2TqA5+j3oljJUb4nmB954FLGjNem976+B+eDuLIjesiQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.22.13
+ '@babel/generator': 7.23.3
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-hoist-variables': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/parser': 7.23.3
+ '@babel/types': 7.23.3
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
@@ -3246,6 +3078,14 @@ packages:
'@babel/helper-validator-identifier': 7.22.20
to-fast-properties: 2.0.0
+ /@babel/types@7.23.3:
+ resolution: {integrity: sha512-OZnvoH2l8PK5eUvEcUyCt/sXgr/h+UWpVuBbOljwcrAgUl6lpchoQ++PHGyQy1AtYnVA6CEq3y5xeEI10brpXw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-string-parser': 7.22.5
+ '@babel/helper-validator-identifier': 7.22.20
+ to-fast-properties: 2.0.0
+
/@base2/pretty-print-object@1.0.1:
resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==}
dev: true
@@ -3488,7 +3328,7 @@ packages:
resolution: {integrity: sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==}
dev: false
- /@docsearch/react@3.5.2(@algolia/client-search@4.20.0)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.9.0):
+ /@docsearch/react@3.5.2(@algolia/client-search@4.20.0)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.9.0):
resolution: {integrity: sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==}
peerDependencies:
'@types/react': '>= 16.8.0 < 19.0.0'
@@ -3508,7 +3348,7 @@ packages:
'@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)(search-insights@2.9.0)
'@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)
'@docsearch/css': 3.5.2
- '@types/react': 18.2.28
+ '@types/react': 18.2.37
algoliasearch: 4.20.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -4111,13 +3951,13 @@ packages:
dev: true
optional: true
- /@eslint-community/eslint-utils@4.4.0(eslint@8.52.0):
+ /@eslint-community/eslint-utils@4.4.0(eslint@8.53.0):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
- eslint: 8.52.0
+ eslint: 8.53.0
eslint-visitor-keys: 3.4.3
dev: true
@@ -4126,8 +3966,8 @@ packages:
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
dev: true
- /@eslint/eslintrc@2.1.2:
- resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==}
+ /@eslint/eslintrc@2.1.3:
+ resolution: {integrity: sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
@@ -4143,8 +3983,8 @@ packages:
- supports-color
dev: true
- /@eslint/js@8.52.0:
- resolution: {integrity: sha512-mjZVbpaeMZludF2fsWLD0Z9gCref1Tk4i9+wddjRvpUNqqcndPkBD09N/Mapey0b3jaXbLm2kICwFv2E64QinA==}
+ /@eslint/js@8.53.0:
+ resolution: {integrity: sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
@@ -4273,7 +4113,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
@@ -4294,14 +4134,14 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@20.8.6)
+ jest-config: 29.7.0(@types/node@20.9.0)
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -4329,7 +4169,7 @@ packages:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
jest-mock: 29.7.0
dev: true
@@ -4356,7 +4196,7 @@ packages:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -4389,7 +4229,7 @@ packages:
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.20
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
@@ -4451,7 +4291,7 @@ packages:
resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.20
babel-plugin-istanbul: 6.1.1
@@ -4476,7 +4316,7 @@ packages:
dependencies:
'@types/istanbul-lib-coverage': 2.0.5
'@types/istanbul-reports': 3.0.3
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
'@types/yargs': 16.0.7
chalk: 4.1.2
dev: true
@@ -4488,7 +4328,7 @@ packages:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.5
'@types/istanbul-reports': 3.0.3
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
'@types/yargs': 17.0.29
chalk: 4.1.2
dev: true
@@ -4507,7 +4347,7 @@ packages:
magic-string: 0.27.0
react-docgen-typescript: 2.2.2(typescript@5.2.2)
typescript: 5.2.2
- vite: 4.5.0(terser@5.22.0)
+ vite: 4.5.0
dev: true
/@jridgewell/gen-mapping@0.3.3:
@@ -4958,8 +4798,8 @@ packages:
resolution: {integrity: sha512-cIKhxkfVELB6hFjYsbtEeTus2mwrTC+JissfZYM0n+8Fv+g8ucUfOlm3VEDtwtwydZ0Nuauv3bl0qF82nnCAqA==}
dev: false
- /@next/eslint-plugin-next@14.0.0:
- resolution: {integrity: sha512-Ye37nNI09V3yt7pzuzSQtwlvuJ2CGzFszHXkcTHHZgNr7EhTMFLipn3VSJChy+e5+ahTdNApPphc3qCPUsn10A==}
+ /@next/eslint-plugin-next@14.0.3:
+ resolution: {integrity: sha512-j4K0n+DcmQYCVnSAM+UByTVfIHnYQy2ODozfQP+4RdwtRDfobrIvKq1K4Exb2koJ79HSSa7s6B2SA8T/1YR3RA==}
dependencies:
glob: 7.1.7
dev: true
@@ -5466,22 +5306,22 @@ packages:
requiresBuild: true
optional: true
- /@preact/preset-vite@2.6.0(@babel/core@7.23.2)(preact@10.18.1)(vite@4.5.0):
+ /@preact/preset-vite@2.6.0(@babel/core@7.23.3)(preact@10.19.2)(vite@5.0.0):
resolution: {integrity: sha512-5nztNzXbCpqyVum/K94nB2YQ5PTnvWdz4u7/X0jc8+kLyskSSpkNUxLQJeI90zfGSFIX1Ibj2G2JIS/mySHWYQ==}
peerDependencies:
'@babel/core': 7.x
vite: 2.x || 3.x || 4.x
dependencies:
- '@babel/core': 7.23.2
- '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.2)
- '@prefresh/vite': 2.4.1(preact@10.18.1)(vite@4.5.0)
+ '@babel/core': 7.23.3
+ '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.3)
+ '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.3)
+ '@prefresh/vite': 2.4.1(preact@10.19.2)(vite@5.0.0)
'@rollup/pluginutils': 4.2.1
- babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.23.2)
+ babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.23.3)
debug: 4.3.4
kolorist: 1.8.0
resolve: 1.22.8
- vite: 4.5.0(terser@5.22.0)
+ vite: 5.0.0(terser@5.24.0)
transitivePeerDependencies:
- preact
- supports-color
@@ -5491,37 +5331,37 @@ packages:
resolution: {integrity: sha512-joAwpkUDwo7ZqJnufXRGzUb+udk20RBgfA8oLPBh5aJH2LeStmV1luBfeJTztPdyCscC2j2SmZ/tVxFRMIxAEw==}
dev: true
- /@prefresh/core@1.5.2(preact@10.18.1):
+ /@prefresh/core@1.5.2(preact@10.19.2):
resolution: {integrity: sha512-A/08vkaM1FogrCII5PZKCrygxSsc11obExBScm3JF1CryK2uDS3ZXeni7FeKCx1nYdUkj4UcJxzPzc1WliMzZA==}
peerDependencies:
preact: ^10.0.0
dependencies:
- preact: 10.18.1
+ preact: 10.19.2
dev: true
/@prefresh/utils@1.2.0:
resolution: {integrity: sha512-KtC/fZw+oqtwOLUFM9UtiitB0JsVX0zLKNyRTA332sqREqSALIIQQxdUCS1P3xR/jT1e2e8/5rwH6gdcMLEmsQ==}
dev: true
- /@prefresh/vite@2.4.1(preact@10.18.1)(vite@4.5.0):
+ /@prefresh/vite@2.4.1(preact@10.19.2)(vite@5.0.0):
resolution: {integrity: sha512-vthWmEqu8TZFeyrBNc9YE5SiC3DVSzPgsOCp/WQ7FqdHpOIJi7Z8XvCK06rBPOtG4914S52MjG9Ls22eVAiuqQ==}
peerDependencies:
preact: ^10.4.0
vite: '>=2.0.0'
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@prefresh/babel-plugin': 0.5.0
- '@prefresh/core': 1.5.2(preact@10.18.1)
+ '@prefresh/core': 1.5.2(preact@10.19.2)
'@prefresh/utils': 1.2.0
'@rollup/pluginutils': 4.2.1
- preact: 10.18.1
- vite: 4.5.0(terser@5.22.0)
+ preact: 10.19.2
+ vite: 5.0.0(terser@5.24.0)
transitivePeerDependencies:
- supports-color
dev: true
- /@prisma/client@5.5.2(prisma@5.5.2):
- resolution: {integrity: sha512-54XkqR8M+fxbzYqe+bIXimYnkkcGqgOh0dn0yWtIk6CQT4IUCAvNFNcQZwk2KqaLU+/1PHTSWrcHtx4XjluR5w==}
+ /@prisma/client@5.6.0(prisma@5.6.0):
+ resolution: {integrity: sha512-mUDefQFa1wWqk4+JhKPYq8BdVoFk9NFMBXUI8jAkBfQTtgx8WPx02U2HB/XbAz3GSUJpeJOKJQtNvaAIDs6sug==}
engines: {node: '>=16.13'}
requiresBuild: true
peerDependencies:
@@ -5530,8 +5370,8 @@ packages:
prisma:
optional: true
dependencies:
- '@prisma/engines-version': 5.5.1-1.aebc046ce8b88ebbcb45efe31cbe7d06fd6abc0a
- prisma: 5.5.2
+ '@prisma/engines-version': 5.6.0-32.e95e739751f42d8ca026f6b910f5a2dc5adeaeee
+ prisma: 5.6.0
dev: false
/@prisma/debug@3.8.1:
@@ -5552,8 +5392,8 @@ packages:
- supports-color
dev: true
- /@prisma/debug@5.4.1:
- resolution: {integrity: sha512-JJkDz43hVj5D/deu6QOlmtTnrTM3OaMQ7RqZVDo+7bpEy/s4W2JkAbOVsHZCCjs0SMMMPOfLlrpG5dREdoqAeQ==}
+ /@prisma/debug@5.5.2:
+ resolution: {integrity: sha512-OeyuNABo1dgWHIQuJAdvW5qp5ccFfbI0CKNvdg8D34YWOfo6L+4J0gmnRI/j+h40HvM3S5WH2T8e3W9bPa7EVg==}
dependencies:
'@types/debug': 4.1.9
debug: 4.3.4
@@ -5583,8 +5423,8 @@ packages:
- supports-color
dev: true
- /@prisma/engines-version@5.5.1-1.aebc046ce8b88ebbcb45efe31cbe7d06fd6abc0a:
- resolution: {integrity: sha512-O+qHFnZvAyOFk1tUco2/VdiqS0ym42a3+6CYLScllmnpbyiTplgyLt2rK/B9BTjYkSHjrgMhkG47S0oqzdIckA==}
+ /@prisma/engines-version@5.6.0-32.e95e739751f42d8ca026f6b910f5a2dc5adeaeee:
+ resolution: {integrity: sha512-UoFgbV1awGL/3wXuUK3GDaX2SolqczeeJ5b4FVec9tzeGbSWJboPSbT0psSrmgYAKiKnkOPFSLlH6+b+IyOwAw==}
dev: false
/@prisma/engines@4.6.1:
@@ -5592,17 +5432,17 @@ packages:
requiresBuild: true
dev: true
- /@prisma/engines@5.5.2:
- resolution: {integrity: sha512-Be5hoNF8k+lkB3uEMiCHbhbfF6aj1GnrTBnn5iYFT7GEr3TsOEp1soviEcBR0tYCgHbxjcIxJMhdbvxALJhAqg==}
+ /@prisma/engines@5.6.0:
+ resolution: {integrity: sha512-Mt2q+GNJpU2vFn6kif24oRSBQv1KOkYaterQsi0k2/lA+dLvhRX6Lm26gon6PYHwUM8/h8KRgXIUMU0PCLB6bw==}
requiresBuild: true
- /@prisma/extension-accelerate@0.6.2(@prisma/client@5.5.2):
+ /@prisma/extension-accelerate@0.6.2(@prisma/client@5.6.0):
resolution: {integrity: sha512-KIBVPeWt8qaSg7wQ+TXmCVeUDoW75whtXcdS9dbHxRoO2OWFH5I9+qbkHBhx5Wj/h1wQpS8usuxGnsZqiBjUpQ==}
engines: {node: '>=16'}
peerDependencies:
'@prisma/client': '>=4.16.1'
dependencies:
- '@prisma/client': 5.5.2(prisma@5.5.2)
+ '@prisma/client': 5.6.0(prisma@5.6.0)
dev: false
/@prisma/fetch-engine@4.6.1:
@@ -5650,10 +5490,10 @@ packages:
- supports-color
dev: true
- /@prisma/generator-helper@5.4.1:
- resolution: {integrity: sha512-3zYQoBOU0BLPT02xPSRwQRcyjnSzNOPPWSKQINkOr5hid680ajaksV2eBbcmrNu2vltLpKpMgdTnlreUjkZ5tQ==}
+ /@prisma/generator-helper@5.5.2:
+ resolution: {integrity: sha512-qQz4JfhjjMs+C/dbZUoGAU+JV685Qe72iGonDM0c9H05A5s5MCWj5wV2kVi1/DNiy7jkfqGGM7bX8k0/8yO0FQ==}
dependencies:
- '@prisma/debug': 5.4.1
+ '@prisma/debug': 5.5.2
'@types/cross-spawn': 6.0.3
cross-spawn: 7.0.3
kleur: 4.1.5
@@ -5757,18 +5597,18 @@ packages:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
'@radix-ui/react-collapsible': 1.0.3(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-collection': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-collection': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-arrow@1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-arrow@1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
peerDependencies:
'@types/react': '*'
@@ -5782,8 +5622,8 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.28
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.37
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -5802,13 +5642,13 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.37)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
@@ -5828,18 +5668,18 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-collection@1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-collection@1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
peerDependencies:
'@types/react': '*'
@@ -5853,11 +5693,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0)
+ '@types/react': 18.2.37
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -5870,7 +5710,7 @@ packages:
react: 18.2.0
dev: false
- /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.37)(react@18.2.0):
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
peerDependencies:
'@types/react': '*'
@@ -5880,7 +5720,7 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@types/react': 18.2.28
+ '@types/react': 18.2.37
react: 18.2.0
/@radix-ui/react-context@1.0.0(react@18.2.0):
@@ -5892,7 +5732,7 @@ packages:
react: 18.2.0
dev: false
- /@radix-ui/react-context@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-context@1.0.1(@types/react@18.2.37)(react@18.2.0):
resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
peerDependencies:
'@types/react': '*'
@@ -5902,7 +5742,7 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@types/react': 18.2.28
+ '@types/react': 18.2.37
react: 18.2.0
/@radix-ui/react-dialog@1.0.0(react-dom@18.2.0)(react@18.2.0):
@@ -5947,24 +5787,24 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-focus-guards': 1.0.1(react@18.2.0)
'@radix-ui/react-focus-scope': 1.0.4(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
aria-hidden: 1.2.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-remove-scroll: 2.5.5(react@18.2.0)
dev: false
- /@radix-ui/react-direction@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-direction@1.0.1(@types/react@18.2.37)(react@18.2.0):
resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
peerDependencies:
'@types/react': '*'
@@ -5974,7 +5814,7 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@types/react': 18.2.28
+ '@types/react': 18.2.37
react: 18.2.0
/@radix-ui/react-dismissable-layer@1.0.0(react-dom@18.2.0)(react@18.2.0):
@@ -6008,15 +5848,15 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.37)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-dismissable-layer@1.0.5(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-dismissable-layer@1.0.5(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==}
peerDependencies:
'@types/react': '*'
@@ -6031,11 +5871,11 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.37)(react@18.2.0)
+ '@types/react': 18.2.37
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
@@ -6055,12 +5895,12 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0)
'@radix-ui/react-menu': 2.0.6(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
@@ -6114,9 +5954,9 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
@@ -6135,9 +5975,9 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
@@ -6152,7 +5992,7 @@ packages:
react: 18.2.0
dev: false
- /@radix-ui/react-id@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-id@1.0.1(@types/react@18.2.37)(react@18.2.0):
resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
peerDependencies:
'@types/react': '*'
@@ -6162,8 +6002,8 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@types/react': 18.2.37
react: 18.2.0
/@radix-ui/react-label@2.0.2(react-dom@18.2.0)(react@18.2.0):
@@ -6180,7 +6020,7 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
@@ -6200,21 +6040,21 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-collection': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-focus-guards': 1.0.1(react@18.2.0)
'@radix-ui/react-focus-scope': 1.0.4(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-roving-focus': 1.0.4(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
aria-hidden: 1.2.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -6236,18 +6076,18 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-focus-guards': 1.0.1(react@18.2.0)
'@radix-ui/react-focus-scope': 1.0.4(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
aria-hidden: 1.2.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -6269,20 +6109,20 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@floating-ui/react-dom': 2.0.2(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-arrow': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-arrow': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.37)(react@18.2.0)
'@radix-ui/rect': 1.0.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-popper@1.1.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-popper@1.1.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==}
peerDependencies:
'@types/react': '*'
@@ -6297,16 +6137,16 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@floating-ui/react-dom': 2.0.2(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-arrow': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-arrow': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.37)(react@18.2.0)
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.28
+ '@types/react': 18.2.37
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
@@ -6337,12 +6177,12 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-portal@1.0.4(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-portal@1.0.4(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==}
peerDependencies:
'@types/react': '*'
@@ -6356,8 +6196,8 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.28
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.37
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
@@ -6375,7 +6215,7 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-presence@1.0.1(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-presence@1.0.1(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
peerDependencies:
'@types/react': '*'
@@ -6389,9 +6229,9 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@types/react': 18.2.37
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
@@ -6408,7 +6248,7 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-primitive@1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-primitive@1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
peerDependencies:
'@types/react': '*'
@@ -6422,8 +6262,8 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0)
+ '@types/react': 18.2.37
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -6442,15 +6282,15 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-roving-focus': 1.0.4(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.37)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
@@ -6470,14 +6310,14 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-collection': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -6497,23 +6337,23 @@ packages:
'@babel/runtime': 7.23.2
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-collection': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0)
'@radix-ui/react-dismissable-layer': 1.0.4(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-focus-guards': 1.0.1(react@18.2.0)
'@radix-ui/react-focus-scope': 1.0.3(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0)
'@radix-ui/react-popper': 1.1.2(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-portal': 1.0.3(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
aria-hidden: 1.2.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -6536,23 +6376,23 @@ packages:
'@babel/runtime': 7.23.2
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-collection': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-focus-guards': 1.0.1(react@18.2.0)
'@radix-ui/react-focus-scope': 1.0.4(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
aria-hidden: 1.2.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -6573,12 +6413,12 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-slider@1.1.2(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-slider@1.1.2(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-NKs15MJylfzVsCagVSWKhGGLNR1W9qWs+HtgbmjjVUB3B9+lb3PYoXxVju3kOrpf0VKyVCtZp+iTwVoqpa1Chw==}
peerDependencies:
'@types/react': '*'
@@ -6594,16 +6434,16 @@ packages:
'@babel/runtime': 7.23.2
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
+ '@radix-ui/react-collection': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@types/react': 18.2.37
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
@@ -6618,7 +6458,7 @@ packages:
react: 18.2.0
dev: false
- /@radix-ui/react-slot@1.0.2(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-slot@1.0.2(@types/react@18.2.37)(react@18.2.0):
resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
peerDependencies:
'@types/react': '*'
@@ -6628,8 +6468,8 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@types/react': 18.2.37
react: 18.2.0
/@radix-ui/react-switch@1.0.3(react-dom@18.2.0)(react@18.2.0):
@@ -6647,12 +6487,12 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.37)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
@@ -6672,12 +6512,12 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-roving-focus': 1.0.4(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-toggle': 1.0.3(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
@@ -6697,8 +6537,8 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
@@ -6718,9 +6558,9 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-roving-focus': 1.0.4(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-separator': 1.0.3(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-toggle-group': 1.0.4(react-dom@18.2.0)(react@18.2.0)
@@ -6728,7 +6568,7 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-tooltip@1.0.7(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-tooltip@1.0.7(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-lPh5iKNFVQ/jav/j6ZrWq3blfDJ0OH9R6FlNUHPMqdLuQ9vwDgFsRxvl8b7Asuy5c8xmoojHUxKHQSOAvMHxyw==}
peerDependencies:
'@types/react': '*'
@@ -6743,18 +6583,18 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.28
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.37
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
@@ -6768,7 +6608,7 @@ packages:
react: 18.2.0
dev: false
- /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.37)(react@18.2.0):
resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
peerDependencies:
'@types/react': '*'
@@ -6778,7 +6618,7 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@types/react': 18.2.28
+ '@types/react': 18.2.37
react: 18.2.0
/@radix-ui/react-use-controllable-state@1.0.0(react@18.2.0):
@@ -6791,7 +6631,7 @@ packages:
react: 18.2.0
dev: false
- /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.37)(react@18.2.0):
resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
peerDependencies:
'@types/react': '*'
@@ -6801,8 +6641,8 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@types/react': 18.2.37
react: 18.2.0
/@radix-ui/react-use-escape-keydown@1.0.0(react@18.2.0):
@@ -6815,7 +6655,7 @@ packages:
react: 18.2.0
dev: false
- /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.37)(react@18.2.0):
resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
peerDependencies:
'@types/react': '*'
@@ -6825,8 +6665,8 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@types/react': 18.2.37
react: 18.2.0
/@radix-ui/react-use-layout-effect@1.0.0(react@18.2.0):
@@ -6838,7 +6678,7 @@ packages:
react: 18.2.0
dev: false
- /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.37)(react@18.2.0):
resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
peerDependencies:
'@types/react': '*'
@@ -6848,10 +6688,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@types/react': 18.2.28
+ '@types/react': 18.2.37
react: 18.2.0
- /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.37)(react@18.2.0):
resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
peerDependencies:
'@types/react': '*'
@@ -6861,10 +6701,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@types/react': 18.2.28
+ '@types/react': 18.2.37
react: 18.2.0
- /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.37)(react@18.2.0):
resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
peerDependencies:
'@types/react': '*'
@@ -6875,10 +6715,10 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.28
+ '@types/react': 18.2.37
react: 18.2.0
- /@radix-ui/react-use-size@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-use-size@1.0.1(@types/react@18.2.37)(react@18.2.0):
resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
peerDependencies:
'@types/react': '*'
@@ -6888,11 +6728,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@types/react': 18.2.37
react: 18.2.0
- /@radix-ui/react-visually-hidden@1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-visually-hidden@1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
peerDependencies:
'@types/react': '*'
@@ -6906,8 +6746,8 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.28
+ '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.37
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -6942,8 +6782,8 @@ packages:
react: 18.2.0
dev: false
- /@react-email/components@0.0.9(react@18.2.0):
- resolution: {integrity: sha512-ORFZ2QKiiIx5FTl5tg3JSAdcGbAVits4lBrN9DYsn9aB8BdN+na6XVImJeZTlXRA+lpqBtWoe1hlq9aZjMVs8w==}
+ /@react-email/components@0.0.11(react@18.2.0):
+ resolution: {integrity: sha512-wj9Sra/AGQvadb3ZABz44ll9Fb9FvXPEmODXRWbNRSc8pJTFGWorrsm4M/yj8dnewd4HtnbLkV1eDOvuiLAVLA==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: 18.2.0
@@ -6960,10 +6800,10 @@ packages:
'@react-email/img': 0.0.6(react@18.2.0)
'@react-email/link': 0.0.6(react@18.2.0)
'@react-email/preview': 0.0.7(react@18.2.0)
- '@react-email/render': 0.0.8
+ '@react-email/render': 0.0.9
'@react-email/row': 0.0.6(react@18.2.0)
'@react-email/section': 0.0.10(react@18.2.0)
- '@react-email/tailwind': 0.0.11(react@18.2.0)
+ '@react-email/tailwind': 0.0.12(react@18.2.0)
'@react-email/text': 0.0.6(react@18.2.0)
react: 18.2.0
transitivePeerDependencies:
@@ -7001,7 +6841,7 @@ packages:
resolution: {integrity: sha512-xzkcGlm+/aFrNlJZBKzxRKkRYJ2cRx92IqmSKAuGnwuKQ/uMKomXzPsHPu3Dclmnhn3wVKj4uprkgQOoxP6uXQ==}
engines: {node: '>=16.0.0'}
dependencies:
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.28)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0)
react: 18.2.0
transitivePeerDependencies:
- '@types/react'
@@ -7062,8 +6902,8 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@react-email/render@0.0.8:
- resolution: {integrity: sha512-DwrCG5t2nXlXYcchZz8h4NOhBYoU5Rpogz54Z18mANUmwMtzl88x6NwRDwzZoAVAlTLOPqvsQbYtWHvfpTfmmA==}
+ /@react-email/render@0.0.9:
+ resolution: {integrity: sha512-nrim7wiACnaXsGtL7GF6jp3Qmml8J6vAjAH88jkC8lIbfNZaCyuPQHANjyYIXlvQeAbsWADQJFZgOHUqFqjh/A==}
engines: {node: '>=18.0.0'}
dependencies:
html-to-text: 9.0.5
@@ -7090,15 +6930,15 @@ packages:
react: 18.2.0
dev: false
- /@react-email/tailwind@0.0.11(react@18.2.0):
- resolution: {integrity: sha512-YZXVLPksAE3ke7HZjWsqxWbxe1OeqVifz+b/Do6K5Hgk3Wb+2HBACTrkkhnqIVv9T4OaeZ4C6ZxTDqvSSSXQhw==}
+ /@react-email/tailwind@0.0.12(react@18.2.0):
+ resolution: {integrity: sha512-s8Ch7GL30qRKScn9NWwItMqxjtzbyUtCnXfC6sL2YTVtulbfvZZ06W+aA0S6f7fdrVlOOlQzZuK/sVaQCHhcSw==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: 18.2.0
dependencies:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- tw-to-css: 0.0.11
+ tw-to-css: 0.0.12
transitivePeerDependencies:
- ts-node
dev: false
@@ -7157,6 +6997,102 @@ packages:
picomatch: 2.3.1
rollup: 2.78.0
+ /@rollup/rollup-android-arm-eabi@4.4.1:
+ resolution: {integrity: sha512-Ss4suS/sd+6xLRu+MLCkED2mUrAyqHmmvZB+zpzZ9Znn9S8wCkTQCJaQ8P8aHofnvG5L16u9MVnJjCqioPErwQ==}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-android-arm64@4.4.1:
+ resolution: {integrity: sha512-sRSkGTvGsARwWd7TzC8LKRf8FiPn7257vd/edzmvG4RIr9x68KBN0/Ek48CkuUJ5Pj/Dp9vKWv6PEupjKWjTYA==}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-darwin-arm64@4.4.1:
+ resolution: {integrity: sha512-nz0AiGrrXyaWpsmBXUGOBiRDU0wyfSXbFuF98pPvIO8O6auQsPG6riWsfQqmCCC5FNd8zKQ4JhgugRNAkBJ8mQ==}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-darwin-x64@4.4.1:
+ resolution: {integrity: sha512-Ogqvf4/Ve/faMaiPRvzsJEqajbqs00LO+8vtrPBVvLgdw4wBg6ZDXdkDAZO+4MLnrc8mhGV6VJAzYScZdPLtJg==}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-linux-arm-gnueabihf@4.4.1:
+ resolution: {integrity: sha512-9zc2tqlr6HfO+hx9+wktUlWTRdje7Ub15iJqKcqg5uJZ+iKqmd2CMxlgPpXi7+bU7bjfDIuvCvnGk7wewFEhCg==}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-linux-arm64-gnu@4.4.1:
+ resolution: {integrity: sha512-phLb1fN3rq2o1j1v+nKxXUTSJnAhzhU0hLrl7Qzb0fLpwkGMHDem+o6d+ZI8+/BlTXfMU4kVWGvy6g9k/B8L6Q==}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-linux-arm64-musl@4.4.1:
+ resolution: {integrity: sha512-M2sDtw4tf57VPSjbTAN/lz1doWUqO2CbQuX3L9K6GWIR5uw9j+ROKCvvUNBY8WUbMxwaoc8mH9HmmBKsLht7+w==}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-linux-x64-gnu@4.4.1:
+ resolution: {integrity: sha512-mHIlRLX+hx+30cD6c4BaBOsSqdnCE4ok7/KDvjHYAHoSuveoMMxIisZFvcLhUnyZcPBXDGZTuBoalcuh43UfQQ==}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-linux-x64-musl@4.4.1:
+ resolution: {integrity: sha512-tB+RZuDi3zxFx7vDrjTNGVLu2KNyzYv+UY8jz7e4TMEoAj7iEt8Qk6xVu6mo3pgjnsHj6jnq3uuRsHp97DLwOA==}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-win32-arm64-msvc@4.4.1:
+ resolution: {integrity: sha512-Hdn39PzOQowK/HZzYpCuZdJC91PE6EaGbTe2VCA9oq2u18evkisQfws0Smh9QQGNNRa/T7MOuGNQoLeXhhE3PQ==}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-win32-ia32-msvc@4.4.1:
+ resolution: {integrity: sha512-tLpKb1Elm9fM8c5w3nl4N1eLTP4bCqTYw9tqUBxX8/hsxqHO3dxc2qPbZ9PNkdK4tg4iLEYn0pOUnVByRd2CbA==}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-win32-x64-msvc@4.4.1:
+ resolution: {integrity: sha512-eAhItDX9yQtZVM3yvXS/VR3qPqcnXvnLyx1pLXl4JzyNMBNO3KC986t/iAg2zcMzpAp9JSvxB5VZGnBiNoA98w==}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@rushstack/eslint-patch@1.5.1:
resolution: {integrity: sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==}
dev: true
@@ -7208,24 +7144,24 @@ packages:
selderee: 0.11.0
dev: false
- /@sentry-internal/tracing@7.77.0:
- resolution: {integrity: sha512-8HRF1rdqWwtINqGEdx8Iqs9UOP/n8E0vXUu3Nmbqj4p5sQPA7vvCfq+4Y4rTqZFc7sNdFpDsRION5iQEh8zfZw==}
+ /@sentry-internal/tracing@7.80.1:
+ resolution: {integrity: sha512-5gZ4LPIj2vpQl2/dHBM4uXMi9OI5E0VlOhJQt0foiuN6JJeiOjdpJFcfVqJk69wrc0deVENTtgKKktxqMwVeWQ==}
engines: {node: '>=8'}
dependencies:
- '@sentry/core': 7.77.0
- '@sentry/types': 7.77.0
- '@sentry/utils': 7.77.0
+ '@sentry/core': 7.80.1
+ '@sentry/types': 7.80.1
+ '@sentry/utils': 7.80.1
dev: false
- /@sentry/browser@7.77.0:
- resolution: {integrity: sha512-nJ2KDZD90H8jcPx9BysQLiQW+w7k7kISCWeRjrEMJzjtge32dmHA8G4stlUTRIQugy5F+73cOayWShceFP7QJQ==}
+ /@sentry/browser@7.80.1:
+ resolution: {integrity: sha512-1dPR6vPJ9vOTzgXff9HGheb178XeEv5hyjBNhCO1f6rjCgnVj99XGNZIgO1Ee1ALJbqlfPWaeV+uSWbbcmgJMA==}
engines: {node: '>=8'}
dependencies:
- '@sentry-internal/tracing': 7.77.0
- '@sentry/core': 7.77.0
- '@sentry/replay': 7.77.0
- '@sentry/types': 7.77.0
- '@sentry/utils': 7.77.0
+ '@sentry-internal/tracing': 7.80.1
+ '@sentry/core': 7.80.1
+ '@sentry/replay': 7.80.1
+ '@sentry/types': 7.80.1
+ '@sentry/utils': 7.80.1
dev: false
/@sentry/cli@1.75.2(encoding@0.1.13):
@@ -7245,26 +7181,26 @@ packages:
- supports-color
dev: false
- /@sentry/core@7.77.0:
- resolution: {integrity: sha512-Tj8oTYFZ/ZD+xW8IGIsU6gcFXD/gfE+FUxUaeSosd9KHwBQNOLhZSsYo/tTVf/rnQI/dQnsd4onPZLiL+27aTg==}
+ /@sentry/core@7.80.1:
+ resolution: {integrity: sha512-3Yh+O9Q86MxwIuJFYtuSSoUCpdx99P1xDAqL0FIPTJ+ekaVMiUJq9NmyaNh9uN2myPSmxvEXW6q3z37zta9ZHg==}
engines: {node: '>=8'}
dependencies:
- '@sentry/types': 7.77.0
- '@sentry/utils': 7.77.0
+ '@sentry/types': 7.80.1
+ '@sentry/utils': 7.80.1
dev: false
- /@sentry/integrations@7.77.0:
- resolution: {integrity: sha512-P055qXgBHeZNKnnVEs5eZYLdy6P49Zr77A1aWJuNih/EenzMy922GOeGy2mF6XYrn1YJSjEwsNMNsQkcvMTK8Q==}
+ /@sentry/integrations@7.80.1:
+ resolution: {integrity: sha512-9C+CBwgFZZUkBYLrPTHaDr3kyknfSs0ejF/00RucvPZjiUPoxfslnh4IjWnN90ELEy2u09kcJY+dTCFVKd0UPQ==}
engines: {node: '>=8'}
dependencies:
- '@sentry/core': 7.77.0
- '@sentry/types': 7.77.0
- '@sentry/utils': 7.77.0
+ '@sentry/core': 7.80.1
+ '@sentry/types': 7.80.1
+ '@sentry/utils': 7.80.1
localforage: 1.10.0
dev: false
- /@sentry/nextjs@7.77.0(encoding@0.1.13)(next@13.5.6)(react@18.2.0)(webpack@5.89.0):
- resolution: {integrity: sha512-8tYPBt5luFjrng1sAMJqNjM9sq80q0jbt6yariADU9hEr7Zk8YqFaOI2/Q6yn9dZ6XyytIRtLEo54kk2AO94xw==}
+ /@sentry/nextjs@7.80.1(encoding@0.1.13)(next@13.5.6)(react@18.2.0)(webpack@5.89.0):
+ resolution: {integrity: sha512-zA1gqwpxQCRJ0wXFFdwPWbKQ3qsdv52ASrGdpJ4ZHDiRD8R52yj08eynJisBQXg8DGuTfKpeOQ/qND1wKE5bHA==}
engines: {node: '>=8'}
peerDependencies:
next: ^10.0.8 || ^11.0 || ^12.0 || ^13.0 || ^14.0
@@ -7275,13 +7211,13 @@ packages:
optional: true
dependencies:
'@rollup/plugin-commonjs': 24.0.0(rollup@2.78.0)
- '@sentry/core': 7.77.0
- '@sentry/integrations': 7.77.0
- '@sentry/node': 7.77.0
- '@sentry/react': 7.77.0(react@18.2.0)
- '@sentry/types': 7.77.0
- '@sentry/utils': 7.77.0
- '@sentry/vercel-edge': 7.77.0
+ '@sentry/core': 7.80.1
+ '@sentry/integrations': 7.80.1
+ '@sentry/node': 7.80.1
+ '@sentry/react': 7.80.1(react@18.2.0)
+ '@sentry/types': 7.80.1
+ '@sentry/utils': 7.80.1
+ '@sentry/vercel-edge': 7.80.1
'@sentry/webpack-plugin': 1.20.0(encoding@0.1.13)
chalk: 3.0.0
next: 13.5.6(react-dom@18.2.0)(react@18.2.0)
@@ -7295,61 +7231,61 @@ packages:
- supports-color
dev: false
- /@sentry/node@7.77.0:
- resolution: {integrity: sha512-Ob5tgaJOj0OYMwnocc6G/CDLWC7hXfVvKX/ofkF98+BbN/tQa5poL+OwgFn9BA8ud8xKzyGPxGU6LdZ8Oh3z/g==}
+ /@sentry/node@7.80.1:
+ resolution: {integrity: sha512-0NWfcZMlyQphKWsvyzfhGm2dCBk5DUPqOGW/vGx18G4tCCYtFcAIj/mCp/4XOEcZRPQgb9vkm+sidGD6DnwWlA==}
engines: {node: '>=8'}
dependencies:
- '@sentry-internal/tracing': 7.77.0
- '@sentry/core': 7.77.0
- '@sentry/types': 7.77.0
- '@sentry/utils': 7.77.0
+ '@sentry-internal/tracing': 7.80.1
+ '@sentry/core': 7.80.1
+ '@sentry/types': 7.80.1
+ '@sentry/utils': 7.80.1
https-proxy-agent: 5.0.1
transitivePeerDependencies:
- supports-color
dev: false
- /@sentry/react@7.77.0(react@18.2.0):
- resolution: {integrity: sha512-Q+htKzib5em0MdaQZMmPomaswaU3xhcVqmLi2CxqQypSjbYgBPPd+DuhrXKoWYLDDkkbY2uyfe4Lp3yLRWeXYw==}
+ /@sentry/react@7.80.1(react@18.2.0):
+ resolution: {integrity: sha512-AZjROgfJsYmI/Htb+giRQuVTCNofsLKGz6nYmJS2cYDZYKP4KU1l1SapF5F8r5Pu7c/6ZvULNj7MeHOXq2SEYA==}
engines: {node: '>=8'}
peerDependencies:
react: 15.x || 16.x || 17.x || 18.x
dependencies:
- '@sentry/browser': 7.77.0
- '@sentry/types': 7.77.0
- '@sentry/utils': 7.77.0
+ '@sentry/browser': 7.80.1
+ '@sentry/types': 7.80.1
+ '@sentry/utils': 7.80.1
hoist-non-react-statics: 3.3.2
react: 18.2.0
dev: false
- /@sentry/replay@7.77.0:
- resolution: {integrity: sha512-M9Ik2J5ekl+C1Och3wzLRZVaRGK33BlnBwfwf3qKjgLDwfKW+1YkwDfTHbc2b74RowkJbOVNcp4m8ptlehlSaQ==}
+ /@sentry/replay@7.80.1:
+ resolution: {integrity: sha512-yjpftIyybQeWD2i0Nd7C96tZwjNbSMRW515EL9jwlNxYbQtGtMs0HavP9Y7uQvQrzwSHY0Wp+ooe9PMuvzqbHw==}
engines: {node: '>=12'}
dependencies:
- '@sentry-internal/tracing': 7.77.0
- '@sentry/core': 7.77.0
- '@sentry/types': 7.77.0
- '@sentry/utils': 7.77.0
+ '@sentry-internal/tracing': 7.80.1
+ '@sentry/core': 7.80.1
+ '@sentry/types': 7.80.1
+ '@sentry/utils': 7.80.1
dev: false
- /@sentry/types@7.77.0:
- resolution: {integrity: sha512-nfb00XRJVi0QpDHg+JkqrmEBHsqBnxJu191Ded+Cs1OJ5oPXEW6F59LVcBScGvMqe+WEk1a73eH8XezwfgrTsA==}
+ /@sentry/types@7.80.1:
+ resolution: {integrity: sha512-CVu4uPVTOI3U9kYiOdA085R7jX5H1oVODbs9y+A8opJ0dtJTMueCXgZyE8oXQ0NjGVs6HEeaLkOuiV0mj8X3yw==}
engines: {node: '>=8'}
dev: false
- /@sentry/utils@7.77.0:
- resolution: {integrity: sha512-NmM2kDOqVchrey3N5WSzdQoCsyDkQkiRxExPaNI2oKQ/jMWHs9yt0tSy7otPBcXs0AP59ihl75Bvm1tDRcsp5g==}
+ /@sentry/utils@7.80.1:
+ resolution: {integrity: sha512-bfFm2e/nEn+b9++QwjNEYCbS7EqmteT8uf0XUs7PljusSimIqqxDtK1pfD9zjynPgC8kW/fVBKv0pe2LufomeA==}
engines: {node: '>=8'}
dependencies:
- '@sentry/types': 7.77.0
+ '@sentry/types': 7.80.1
dev: false
- /@sentry/vercel-edge@7.77.0:
- resolution: {integrity: sha512-ffddPCgxVeAccPYuH5sooZeHBqDuJ9OIhIRYKoDi4TvmwAzWo58zzZWhRpkHqHgIQdQvhLVZ5F+FSQVWnYSOkw==}
+ /@sentry/vercel-edge@7.80.1:
+ resolution: {integrity: sha512-V1XdiMxMBIU82gGPDt9mXXmOU/P4RHjXMWPx2ClkRg5aoBi1ewLpTcIRY8tYWawSAS4CMGimQcs3895Zzyvusg==}
engines: {node: '>=8'}
dependencies:
- '@sentry/core': 7.77.0
- '@sentry/types': 7.77.0
- '@sentry/utils': 7.77.0
+ '@sentry/core': 7.80.1
+ '@sentry/types': 7.80.1
+ '@sentry/utils': 7.80.1
dev: false
/@sentry/webpack-plugin@1.20.0(encoding@0.1.13):
@@ -7408,18 +7344,18 @@ packages:
'@sinonjs/commons': 3.0.0
dev: true
- /@smithy/abort-controller@2.0.12:
- resolution: {integrity: sha512-YIJyefe1mi3GxKdZxEBEuzYOeQ9xpYfqnFmWzojCssRAuR7ycxwpoRQgp965vuW426xUAQhCV5rCaWElQ7XsaA==}
+ /@smithy/abort-controller@2.0.13:
+ resolution: {integrity: sha512-eeOPD+GF9BzF/Mjy3PICLePx4l0f3rG/nQegQHRLTloN5p1lSJJNZsyn+FzDnW8P2AduragZqJdtKNCxXozB1Q==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.4.0
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@smithy/chunked-blob-reader-native@2.0.0:
- resolution: {integrity: sha512-HM8V2Rp1y8+1343tkZUKZllFhEQPNmpNdgFAncbTsxkZ18/gqjk23XXv3qGyXWp412f3o43ZZ1UZHVcHrpRnCQ==}
+ /@smithy/chunked-blob-reader-native@2.0.1:
+ resolution: {integrity: sha512-N2oCZRglhWKm7iMBu7S6wDzXirjAofi7tAd26cxmgibRYOBS4D3hGfmkwCpHdASZzwZDD8rluh0Rcqw1JeZDRw==}
dependencies:
- '@smithy/util-base64': 2.0.0
+ '@smithy/util-base64': 2.0.1
tslib: 2.6.2
dev: false
@@ -7429,14 +7365,14 @@ packages:
tslib: 2.6.2
dev: false
- /@smithy/config-resolver@2.0.16:
- resolution: {integrity: sha512-1k+FWHQDt2pfpXhJsOmNMmlAZ3NUQ98X5tYsjQhVGq+0X6cOBMhfh6Igd0IX3Ut6lEO6DQAdPMI/blNr3JZfMQ==}
+ /@smithy/config-resolver@2.0.18:
+ resolution: {integrity: sha512-761sJSgNbvsqcsKW6/WZbrZr4H+0Vp/QKKqwyrxCPwD8BsiPEXNHyYnqNgaeK9xRWYswjon0Uxbpe3DWQo0j/g==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/node-config-provider': 2.1.3
- '@smithy/types': 2.4.0
+ '@smithy/node-config-provider': 2.1.5
+ '@smithy/types': 2.5.0
'@smithy/util-config-provider': 2.0.0
- '@smithy/util-middleware': 2.0.5
+ '@smithy/util-middleware': 2.0.6
tslib: 2.6.2
dev: false
@@ -7444,10 +7380,21 @@ packages:
resolution: {integrity: sha512-QnPBi6D2zj6AHJdUTo5zXmk8vwHJ2bNevhcVned1y+TZz/OI5cizz5DsYNkqFUIDn8tBuEyKNgbmKVNhBbuY3g==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/node-config-provider': 2.1.3
- '@smithy/property-provider': 2.0.13
- '@smithy/types': 2.4.0
- '@smithy/url-parser': 2.0.12
+ '@smithy/node-config-provider': 2.1.5
+ '@smithy/property-provider': 2.0.14
+ '@smithy/types': 2.5.0
+ '@smithy/url-parser': 2.0.13
+ tslib: 2.6.2
+ dev: false
+
+ /@smithy/credential-provider-imds@2.1.1:
+ resolution: {integrity: sha512-gw5G3FjWC6sNz8zpOJgPpH5HGKrpoVFQpToNAwLwJVyI/LJ2jDJRjSKEsM6XI25aRpYjMSE/Qptxx305gN1vHw==}
+ engines: {node: '>=14.0.0'}
+ dependencies:
+ '@smithy/node-config-provider': 2.1.5
+ '@smithy/property-provider': 2.0.14
+ '@smithy/types': 2.5.0
+ '@smithy/url-parser': 2.0.13
tslib: 2.6.2
dev: false
@@ -7455,88 +7402,97 @@ packages:
resolution: {integrity: sha512-ZZQLzHBJkbiAAdj2C5K+lBlYp/XJ+eH2uy+jgJgYIFW/o5AM59Hlj7zyI44/ZTDIQWmBxb3EFv/c5t44V8/g8A==}
dependencies:
'@aws-crypto/crc32': 3.0.0
- '@smithy/types': 2.4.0
+ '@smithy/types': 2.5.0
'@smithy/util-hex-encoding': 2.0.0
tslib: 2.6.2
dev: false
- /@smithy/eventstream-serde-browser@2.0.12:
- resolution: {integrity: sha512-0pi8QlU/pwutNshoeJcbKR1p7Ie5STd8UFAMX5xhSoSJjNlxIv/OsHbF023jscMRN2Prrqd6ToGgdCnsZVQjvg==}
+ /@smithy/eventstream-codec@2.0.13:
+ resolution: {integrity: sha512-CExbelIYp+DxAHG8RIs0l9QL7ElqhG4ym9BNoSpkPa4ptBQfzJdep3LbOSVJIE2VUdBAeObdeL6EDB3Jo85n3g==}
+ dependencies:
+ '@aws-crypto/crc32': 3.0.0
+ '@smithy/types': 2.5.0
+ '@smithy/util-hex-encoding': 2.0.0
+ tslib: 2.6.2
+ dev: false
+
+ /@smithy/eventstream-serde-browser@2.0.13:
+ resolution: {integrity: sha512-OJ/2g/VxkzA+mYZxV102oX3CsiE+igTSmqq/ir3oEVG2kSIdRC00ryttj/lmL14W06ExNi0ysmfLxQkL8XrAZQ==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/eventstream-serde-universal': 2.0.12
- '@smithy/types': 2.4.0
+ '@smithy/eventstream-serde-universal': 2.0.13
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@smithy/eventstream-serde-config-resolver@2.0.12:
- resolution: {integrity: sha512-I0XfwQkIX3gAnbrU5rLMkBSjTM9DHttdbLwf12CXmj7SSI5dT87PxtKLRrZGanaCMbdf2yCep+MW5/4M7IbvQA==}
+ /@smithy/eventstream-serde-config-resolver@2.0.13:
+ resolution: {integrity: sha512-2BI1CbnYuEvAYoWSeWJtPNygbIKiWeSLxCmDLnyM6wQV32Of7VptiQlaFXPxXp4zqn/rs3ocZ/T29rxE4s4Gsg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.4.0
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@smithy/eventstream-serde-node@2.0.12:
- resolution: {integrity: sha512-vf1vMHGOkG3uqN9x1zKOhnvW/XgvhJXWqjV6zZiT2FMjlEayugQ1mzpSqr7uf89+BzjTzuZKERmOsEAmewLbxw==}
+ /@smithy/eventstream-serde-node@2.0.13:
+ resolution: {integrity: sha512-7NbFwPafb924elFxCBDvm48jy/DeSrpFbFQN0uN2ThuY5HrEeubikS0t7WMva4Z4EnRoivpbuT0scb9vUIJKoA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/eventstream-serde-universal': 2.0.12
- '@smithy/types': 2.4.0
+ '@smithy/eventstream-serde-universal': 2.0.13
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@smithy/eventstream-serde-universal@2.0.12:
- resolution: {integrity: sha512-xZ3ZNpCxIND+q+UCy7y1n1/5VQEYicgSTNCcPqsKawX+Vd+6OcFX7gUHMyPzL8cZr+GdmJuxNleqHlH4giK2tw==}
+ /@smithy/eventstream-serde-universal@2.0.13:
+ resolution: {integrity: sha512-j0yFd5UfftM+ia9dxLRbheJDCkCZBHpcEzCsPO8BxVOTbdcX/auVJCv6ov/yvpCKsf4Hv3mOqi0Is1YogM2g3Q==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/eventstream-codec': 2.0.12
- '@smithy/types': 2.4.0
+ '@smithy/eventstream-codec': 2.0.13
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@smithy/fetch-http-handler@2.2.4:
- resolution: {integrity: sha512-gIPRFEGi+c6V52eauGKrjDzPWF2Cu7Z1r5F8A3j2wcwz25sPG/t8kjsbEhli/tS/2zJp/ybCZXe4j4ro3yv/HA==}
+ /@smithy/fetch-http-handler@2.2.6:
+ resolution: {integrity: sha512-PStY3XO1Ksjwn3wMKye5U6m6zxXpXrXZYqLy/IeCbh3nM9QB3Jgw/B0PUSLUWKdXg4U8qgEu300e3ZoBvZLsDg==}
dependencies:
- '@smithy/protocol-http': 3.0.8
- '@smithy/querystring-builder': 2.0.12
- '@smithy/types': 2.4.0
- '@smithy/util-base64': 2.0.0
+ '@smithy/protocol-http': 3.0.9
+ '@smithy/querystring-builder': 2.0.13
+ '@smithy/types': 2.5.0
+ '@smithy/util-base64': 2.0.1
tslib: 2.6.2
dev: false
- /@smithy/hash-blob-browser@2.0.12:
- resolution: {integrity: sha512-riLnV16f27yyePX8UF0deRHAeccUK8SrOxyTykSTrnVkgS3DsjNapZtTbd8OGNKEbI60Ncdb5GwN3rHZudXvog==}
+ /@smithy/hash-blob-browser@2.0.14:
+ resolution: {integrity: sha512-yWdghyPJIEqLYsaE7YVgd3YhM7jN4Pv6eJQvTomnMsz5K2qRBlpjUx3T9fKlElp1qdeQ7DNc3sAat4i9CUBO7Q==}
dependencies:
'@smithy/chunked-blob-reader': 2.0.0
- '@smithy/chunked-blob-reader-native': 2.0.0
- '@smithy/types': 2.4.0
+ '@smithy/chunked-blob-reader-native': 2.0.1
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@smithy/hash-node@2.0.12:
- resolution: {integrity: sha512-fDZnTr5j9t5qcbeJ037aMZXxMka13Znqwrgy3PAqYj6Dm3XHXHftTH3q+NWgayUxl1992GFtQt1RuEzRMy3NnQ==}
+ /@smithy/hash-node@2.0.15:
+ resolution: {integrity: sha512-t/qjEJZu/G46A22PAk1k/IiJZT4ncRkG5GOCNWN9HPPy5rCcSZUbh7gwp7CGKgJJ7ATMMg+0Td7i9o1lQTwOfQ==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.4.0
+ '@smithy/types': 2.5.0
'@smithy/util-buffer-from': 2.0.0
- '@smithy/util-utf8': 2.0.0
+ '@smithy/util-utf8': 2.0.2
tslib: 2.6.2
dev: false
- /@smithy/hash-stream-node@2.0.12:
- resolution: {integrity: sha512-x/DrSynPKrW0k00q7aZ/vy531a3mRw79mOajHp+cIF0TrA1SqEMFoy/B8X0XtoAtlJWt/vvgeDNqt/KAeaAqMw==}
+ /@smithy/hash-stream-node@2.0.15:
+ resolution: {integrity: sha512-ZZ6kC/pHt5Dc2goXIIyC8uA7A4GUMSzdCynAabnZ3CSSaV6ctP8mlvVkqjPph0O3XzHlx/80gdLrNqi1GDPUsA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.4.0
- '@smithy/util-utf8': 2.0.0
+ '@smithy/types': 2.5.0
+ '@smithy/util-utf8': 2.0.2
tslib: 2.6.2
dev: false
- /@smithy/invalid-dependency@2.0.12:
- resolution: {integrity: sha512-p5Y+iMHV3SoEpy3VSR7mifbreHQwVSvHSAz/m4GdoXfOzKzaYC8hYv10Ks7Deblkf7lhas8U+lAp9ThbBM+ZXA==}
+ /@smithy/invalid-dependency@2.0.13:
+ resolution: {integrity: sha512-XsGYhVhvEikX1Yz0kyIoLssJf2Rs6E0U2w2YuKdT4jSra5A/g8V2oLROC1s56NldbgnpesTYB2z55KCHHbKyjw==}
dependencies:
- '@smithy/types': 2.4.0
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
@@ -7547,84 +7503,84 @@ packages:
tslib: 2.6.2
dev: false
- /@smithy/md5-js@2.0.12:
- resolution: {integrity: sha512-OgDt+Xnrw+W5z3MSl5KZZzebqmXrYl9UdbCiBYnnjErmNywwSjV6QB/Oic3/7hnsPniSU81n7Rvlhz2kH4EREQ==}
+ /@smithy/md5-js@2.0.15:
+ resolution: {integrity: sha512-pAZaokib56XvhU0t/R9vAcr3L3bMhIakhF25X7EMSQ7LAURiLfce/tgON8I3x/dIbnZUyeRi8f2cx2azu6ATew==}
dependencies:
- '@smithy/types': 2.4.0
- '@smithy/util-utf8': 2.0.0
+ '@smithy/types': 2.5.0
+ '@smithy/util-utf8': 2.0.2
tslib: 2.6.2
dev: false
- /@smithy/middleware-content-length@2.0.14:
- resolution: {integrity: sha512-poUNgKTw9XwPXfX9nEHpVgrMNVpaSMZbshqvPxFVoalF4wp6kRzYKOfdesSVectlQ51VtigoLfbXcdyPwvxgTg==}
+ /@smithy/middleware-content-length@2.0.15:
+ resolution: {integrity: sha512-xH4kRBw01gJgWiU+/mNTrnyFXeozpZHw39gLb3JKGsFDVmSrJZ8/tRqu27tU/ki1gKkxr2wApu+dEYjI3QwV1Q==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/protocol-http': 3.0.8
- '@smithy/types': 2.4.0
+ '@smithy/protocol-http': 3.0.9
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@smithy/middleware-endpoint@2.1.3:
- resolution: {integrity: sha512-ZrQ0/YX6hNVTxqMEHtEaDbDv6pNeEji/a5Vk3HuFC5R3ZY8lfoATyxmOGxBVYnF3NUvZLNC7umEv1WzWGWvCGQ==}
+ /@smithy/middleware-endpoint@2.2.0:
+ resolution: {integrity: sha512-tddRmaig5URk2106PVMiNX6mc5BnKIKajHHDxb7K0J5MLdcuQluHMGnjkv18iY9s9O0tF+gAcPd/pDXA5L9DZw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/middleware-serde': 2.0.12
- '@smithy/node-config-provider': 2.1.3
- '@smithy/shared-ini-file-loader': 2.2.2
- '@smithy/types': 2.4.0
- '@smithy/url-parser': 2.0.12
- '@smithy/util-middleware': 2.0.5
+ '@smithy/middleware-serde': 2.0.13
+ '@smithy/node-config-provider': 2.1.5
+ '@smithy/shared-ini-file-loader': 2.2.4
+ '@smithy/types': 2.5.0
+ '@smithy/url-parser': 2.0.13
+ '@smithy/util-middleware': 2.0.6
tslib: 2.6.2
dev: false
- /@smithy/middleware-retry@2.0.18:
- resolution: {integrity: sha512-VyrHQRldGSb3v9oFOB5yPxmLT7U2sQic2ytylOnYlnsmVOLlFIaI6sW22c+w2675yq+XZ6HOuzV7x2OBYCWRNA==}
+ /@smithy/middleware-retry@2.0.20:
+ resolution: {integrity: sha512-X2yrF/SHDk2WDd8LflRNS955rlzQ9daz9UWSp15wW8KtzoTXg3bhHM78HbK1cjr48/FWERSJKh9AvRUUGlIawg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/node-config-provider': 2.1.3
- '@smithy/protocol-http': 3.0.8
- '@smithy/service-error-classification': 2.0.5
- '@smithy/types': 2.4.0
- '@smithy/util-middleware': 2.0.5
- '@smithy/util-retry': 2.0.5
+ '@smithy/node-config-provider': 2.1.5
+ '@smithy/protocol-http': 3.0.9
+ '@smithy/service-error-classification': 2.0.6
+ '@smithy/types': 2.5.0
+ '@smithy/util-middleware': 2.0.6
+ '@smithy/util-retry': 2.0.6
tslib: 2.6.2
uuid: 8.3.2
dev: false
- /@smithy/middleware-serde@2.0.12:
- resolution: {integrity: sha512-IBeco157lIScecq2Z+n0gq56i4MTnfKxS7rbfrAORveDJgnbBAaEQgYqMqp/cYqKrpvEXcyTjwKHrBjCCIZh2A==}
+ /@smithy/middleware-serde@2.0.13:
+ resolution: {integrity: sha512-tBGbeXw+XsE6pPr4UaXOh+UIcXARZeiA8bKJWxk2IjJcD1icVLhBSUQH9myCIZLNNzJIH36SDjUX8Wqk4xJCJg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.4.0
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@smithy/middleware-stack@2.0.6:
- resolution: {integrity: sha512-YSvNZeOKWLJ0M/ycxwDIe2Ztkp6Qixmcml1ggsSv2fdHKGkBPhGrX5tMzPGMI1yyx55UEYBi2OB4s+RriXX48A==}
+ /@smithy/middleware-stack@2.0.7:
+ resolution: {integrity: sha512-L1KLAAWkXbGx1t2jjCI/mDJ2dDNq+rp4/ifr/HcC6FHngxho5O7A5bQLpKHGlkfATH6fUnOEx0VICEVFA4sUzw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.4.0
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@smithy/node-config-provider@2.1.3:
- resolution: {integrity: sha512-J6lXvRHGVnSX3n1PYi+e1L5HN73DkkJpUviV3Ebf+8wSaIjAf+eVNbzyvh/S5EQz7nf4KVfwbD5vdoZMAthAEQ==}
+ /@smithy/node-config-provider@2.1.5:
+ resolution: {integrity: sha512-3Omb5/h4tOCuKRx4p4pkYTvEYRCYoKk52bOYbKUyz/G/8gERbagsN8jFm4FjQubkrcIqQEghTpQaUw6uk+0edw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/property-provider': 2.0.13
- '@smithy/shared-ini-file-loader': 2.2.2
- '@smithy/types': 2.4.0
+ '@smithy/property-provider': 2.0.14
+ '@smithy/shared-ini-file-loader': 2.2.4
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@smithy/node-http-handler@2.1.8:
- resolution: {integrity: sha512-KZylM7Wff/So5SmCiwg2kQNXJ+RXgz34wkxS7WNwIUXuZrZZpY/jKJCK+ZaGyuESDu3TxcaY+zeYGJmnFKbQsA==}
+ /@smithy/node-http-handler@2.1.9:
+ resolution: {integrity: sha512-+K0q3SlNcocmo9OZj+fz67gY4lwhOCvIJxVbo/xH+hfWObvaxrMTx7JEzzXcluK0thnnLz++K3Qe7Z/8MDUreA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/abort-controller': 2.0.12
- '@smithy/protocol-http': 3.0.8
- '@smithy/querystring-builder': 2.0.12
- '@smithy/types': 2.4.0
+ '@smithy/abort-controller': 2.0.13
+ '@smithy/protocol-http': 3.0.9
+ '@smithy/querystring-builder': 2.0.13
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
@@ -7632,47 +7588,55 @@ packages:
resolution: {integrity: sha512-VJqUf2CbsQX6uUiC5dUPuoEATuFjkbkW3lJHbRnpk9EDC9X+iKqhfTK+WP+lve5EQ9TcCI1Q6R7hrg41FyC54w==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.4.0
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@smithy/protocol-http@3.0.8:
- resolution: {integrity: sha512-SHJvYeWq8q0FK8xHk+xjV9dzDUDjFMT+G1pZbV+XB6OVoac/FSVshlMNPeUJ8AmSkcDKHRu5vASnRqZHgD3qhw==}
+ /@smithy/property-provider@2.0.14:
+ resolution: {integrity: sha512-k3D2qp9o6imTrLaXRj6GdLYEJr1sXqS99nLhzq8fYmJjSVOeMg/G+1KVAAc7Oxpu71rlZ2f8SSZxcSxkevuR0A==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.4.0
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@smithy/querystring-builder@2.0.12:
- resolution: {integrity: sha512-cDbF07IuCjiN8CdGvPzfJjXIrmDSelScRfyJYrYBNBbKl2+k7QD/KqiHhtRyEKgID5mmEVrV6KE6L/iPJ98sFw==}
+ /@smithy/protocol-http@3.0.9:
+ resolution: {integrity: sha512-U1wl+FhYu4/BC+rjwh1lg2gcJChQhytiNQSggREgQ9G2FzmoK9sACBZvx7thyWMvRyHQTE22mO2d5UM8gMKDBg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.4.0
+ '@smithy/types': 2.5.0
+ tslib: 2.6.2
+ dev: false
+
+ /@smithy/querystring-builder@2.0.13:
+ resolution: {integrity: sha512-JhXKwp3JtsFUe96XLHy/nUPEbaXqn6r7xE4sNaH8bxEyytE5q1fwt0ew/Ke6+vIC7gP87HCHgQpJHg1X1jN2Fw==}
+ engines: {node: '>=14.0.0'}
+ dependencies:
+ '@smithy/types': 2.5.0
'@smithy/util-uri-escape': 2.0.0
tslib: 2.6.2
dev: false
- /@smithy/querystring-parser@2.0.12:
- resolution: {integrity: sha512-fytyTcXaMzPBuNtPlhj5v6dbl4bJAnwKZFyyItAGt4Tgm9HFPZNo7a9r1SKPr/qdxUEBzvL9Rh+B9SkTX3kFxg==}
+ /@smithy/querystring-parser@2.0.13:
+ resolution: {integrity: sha512-TEiT6o8CPZVxJ44Rly/rrsATTQsE+b/nyBVzsYn2sa75xAaZcurNxsFd8z1haoUysONiyex24JMHoJY6iCfLdA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.4.0
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@smithy/service-error-classification@2.0.5:
- resolution: {integrity: sha512-M0SeJnEgD2ywJyV99Fb1yKFzmxDe9JfpJiYTVSRMyRLc467BPU0qsuuDPzMCdB1mU8M8u1rVOdkqdoyFN8UFTw==}
+ /@smithy/service-error-classification@2.0.6:
+ resolution: {integrity: sha512-fCQ36frtYra2fqY2/DV8+3/z2d0VB/1D1hXbjRcM5wkxTToxq6xHbIY/NGGY6v4carskMyG8FHACxgxturJ9Pg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.4.0
+ '@smithy/types': 2.5.0
dev: false
- /@smithy/shared-ini-file-loader@2.2.2:
- resolution: {integrity: sha512-noyQUPn7b1M8uB0GEXc/Zyxq+5K2b7aaqWnLp+hgJ7+xu/FCvtyWy5eWLDjQEsHnAet2IZhS5QF8872OR69uNg==}
+ /@smithy/shared-ini-file-loader@2.2.4:
+ resolution: {integrity: sha512-9dRknGgvYlRIsoTcmMJXuoR/3ekhGwhRq4un3ns2/byre4Ql5hyUN4iS0x8eITohjU90YOnUCsbRwZRvCkbRfw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.4.0
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
@@ -7682,41 +7646,41 @@ packages:
dependencies:
'@smithy/eventstream-codec': 2.0.12
'@smithy/is-array-buffer': 2.0.0
- '@smithy/types': 2.4.0
+ '@smithy/types': 2.5.0
'@smithy/util-hex-encoding': 2.0.0
- '@smithy/util-middleware': 2.0.5
+ '@smithy/util-middleware': 2.0.6
'@smithy/util-uri-escape': 2.0.0
- '@smithy/util-utf8': 2.0.0
+ '@smithy/util-utf8': 2.0.2
tslib: 2.6.2
dev: false
- /@smithy/smithy-client@2.1.12:
- resolution: {integrity: sha512-XXqhridfkKnpj+lt8vM6HRlZbqUAqBjVC74JIi13F/AYQd/zTj9SOyGfxnbp4mjY9q28LityxIuV8CTinr9r5w==}
+ /@smithy/smithy-client@2.1.15:
+ resolution: {integrity: sha512-rngZcQu7Jvs9UbHihK1EI67RMPuzkc3CJmu4MBgB7D7yBnMGuFR86tq5rqHfL2gAkNnMelBN/8kzQVvZjNKefQ==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/middleware-stack': 2.0.6
- '@smithy/types': 2.4.0
- '@smithy/util-stream': 2.0.17
+ '@smithy/middleware-stack': 2.0.7
+ '@smithy/types': 2.5.0
+ '@smithy/util-stream': 2.0.20
tslib: 2.6.2
dev: false
- /@smithy/types@2.4.0:
- resolution: {integrity: sha512-iH1Xz68FWlmBJ9vvYeHifVMWJf82ONx+OybPW8ZGf5wnEv2S0UXcU4zwlwJkRXuLKpcSLHrraHbn2ucdVXLb4g==}
+ /@smithy/types@2.5.0:
+ resolution: {integrity: sha512-/a31lYofrMBkJb3BuPlYJTMKDj0hUmKUP6JFZQu6YVuQVoAjubiY0A52U9S0Uysd33n/djexCUSNJ+G9bf3/aA==}
engines: {node: '>=14.0.0'}
dependencies:
tslib: 2.6.2
dev: false
- /@smithy/url-parser@2.0.12:
- resolution: {integrity: sha512-qgkW2mZqRvlNUcBkxYB/gYacRaAdck77Dk3/g2iw0S9F0EYthIS3loGfly8AwoWpIvHKhkTsCXXQfzksgZ4zIA==}
+ /@smithy/url-parser@2.0.13:
+ resolution: {integrity: sha512-okWx2P/d9jcTsZWTVNnRMpFOE7fMkzloSFyM53fA7nLKJQObxM2T4JlZ5KitKKuXq7pxon9J6SF2kCwtdflIrA==}
dependencies:
- '@smithy/querystring-parser': 2.0.12
- '@smithy/types': 2.4.0
+ '@smithy/querystring-parser': 2.0.13
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@smithy/util-base64@2.0.0:
- resolution: {integrity: sha512-Zb1E4xx+m5Lud8bbeYi5FkcMJMnn+1WUnJF3qD7rAdXpaL7UjkFQLdmW5fHadoKbdHpwH9vSR8EyTJFHJs++tA==}
+ /@smithy/util-base64@2.0.1:
+ resolution: {integrity: sha512-DlI6XFYDMsIVN+GH9JtcRp3j02JEVuWIn/QOZisVzpIAprdsxGveFed0bjbMRCqmIFe8uetn5rxzNrBtIGrPIQ==}
engines: {node: '>=14.0.0'}
dependencies:
'@smithy/util-buffer-from': 2.0.0
@@ -7751,36 +7715,36 @@ packages:
tslib: 2.6.2
dev: false
- /@smithy/util-defaults-mode-browser@2.0.16:
- resolution: {integrity: sha512-Uv5Cu8nVkuvLn0puX+R9zWbSNpLIR3AxUlPoLJ7hC5lvir8B2WVqVEkJLwtixKAncVLasnTVjPDCidtAUTGEQw==}
+ /@smithy/util-defaults-mode-browser@2.0.19:
+ resolution: {integrity: sha512-VHP8xdFR7/orpiABJwgoTB0t8Zhhwpf93gXhNfUBiwAE9O0rvsv7LwpQYjgvbOUDDO8JfIYQB2GYJNkqqGWsXw==}
engines: {node: '>= 10.0.0'}
dependencies:
- '@smithy/property-provider': 2.0.13
- '@smithy/smithy-client': 2.1.12
- '@smithy/types': 2.4.0
+ '@smithy/property-provider': 2.0.14
+ '@smithy/smithy-client': 2.1.15
+ '@smithy/types': 2.5.0
bowser: 2.11.0
tslib: 2.6.2
dev: false
- /@smithy/util-defaults-mode-node@2.0.21:
- resolution: {integrity: sha512-cUEsttVZ79B7Al2rWK2FW03HBpD9LyuqFtm+1qFty5u9sHSdesr215gS2Ln53fTopNiPgeXpdoM3IgjvIO0rJw==}
+ /@smithy/util-defaults-mode-node@2.0.25:
+ resolution: {integrity: sha512-jkmep6/JyWmn2ADw9VULDeGbugR4N/FJCKOt+gYyVswmN1BJOfzF2umaYxQ1HhQDvna3kzm1Dbo1qIfBW4iuHA==}
engines: {node: '>= 10.0.0'}
dependencies:
- '@smithy/config-resolver': 2.0.16
- '@smithy/credential-provider-imds': 2.0.18
- '@smithy/node-config-provider': 2.1.3
- '@smithy/property-provider': 2.0.13
- '@smithy/smithy-client': 2.1.12
- '@smithy/types': 2.4.0
+ '@smithy/config-resolver': 2.0.18
+ '@smithy/credential-provider-imds': 2.1.1
+ '@smithy/node-config-provider': 2.1.5
+ '@smithy/property-provider': 2.0.14
+ '@smithy/smithy-client': 2.1.15
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@smithy/util-endpoints@1.0.2:
- resolution: {integrity: sha512-QEdq+sP68IJHAMVB2ugKVVZEWeKQtZLuf+akHzc8eTVElsZ2ZdVLWC6Cp+uKjJ/t4yOj1qu6ZzyxJQEQ8jdEjg==}
+ /@smithy/util-endpoints@1.0.4:
+ resolution: {integrity: sha512-FPry8j1xye5yzrdnf4xKUXVnkQErxdN7bUIaqC0OFoGsv2NfD9b2UUMuZSSt+pr9a8XWAqj0HoyVNUfPiZ/PvQ==}
engines: {node: '>= 14.0.0'}
dependencies:
- '@smithy/node-config-provider': 2.1.3
- '@smithy/types': 2.4.0
+ '@smithy/node-config-provider': 2.1.5
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
@@ -7791,34 +7755,34 @@ packages:
tslib: 2.6.2
dev: false
- /@smithy/util-middleware@2.0.5:
- resolution: {integrity: sha512-1lyT3TcaMJQe+OFfVI+TlomDkPuVzb27NZYdYtmSTltVmLaUjdCyt4KE+OH1CnhZKsz4/cdCL420Lg9UH5Z2Mw==}
+ /@smithy/util-middleware@2.0.6:
+ resolution: {integrity: sha512-7W4uuwBvSLgKoLC1x4LfeArCVcbuHdtVaC4g30kKsD1erfICyQ45+tFhhs/dZNeQg+w392fhunCm/+oCcb6BSA==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.4.0
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@smithy/util-retry@2.0.5:
- resolution: {integrity: sha512-x3t1+MQAJ6QONk3GTbJNcugCFDVJ+Bkro5YqQQK1EyVesajNDqxFtCx9WdOFNGm/Cbm7tUdwVEmfKQOJoU2Vtw==}
+ /@smithy/util-retry@2.0.6:
+ resolution: {integrity: sha512-PSO41FofOBmyhPQJwBQJ6mVlaD7Sp9Uff9aBbnfBJ9eqXOE/obrqQjn0PNdkfdvViiPXl49BINfnGcFtSP4kYw==}
engines: {node: '>= 14.0.0'}
dependencies:
- '@smithy/service-error-classification': 2.0.5
- '@smithy/types': 2.4.0
+ '@smithy/service-error-classification': 2.0.6
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
- /@smithy/util-stream@2.0.17:
- resolution: {integrity: sha512-fP/ZQ27rRvHsqItds8yB7jerwMpZFTL3QqbQbidUiG0+mttMoKdP0ZqnvM8UK5q0/dfc3/pN7g4XKPXOU7oRWw==}
+ /@smithy/util-stream@2.0.20:
+ resolution: {integrity: sha512-tT8VASuD8jJu0yjHEMTCPt1o5E3FVzgdsxK6FQLAjXKqVv5V8InCnc0EOsYrijgspbfDqdAJg7r0o2sySfcHVg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/fetch-http-handler': 2.2.4
- '@smithy/node-http-handler': 2.1.8
- '@smithy/types': 2.4.0
- '@smithy/util-base64': 2.0.0
+ '@smithy/fetch-http-handler': 2.2.6
+ '@smithy/node-http-handler': 2.1.9
+ '@smithy/types': 2.5.0
+ '@smithy/util-base64': 2.0.1
'@smithy/util-buffer-from': 2.0.0
'@smithy/util-hex-encoding': 2.0.0
- '@smithy/util-utf8': 2.0.0
+ '@smithy/util-utf8': 2.0.2
tslib: 2.6.2
dev: false
@@ -7829,20 +7793,20 @@ packages:
tslib: 2.6.2
dev: false
- /@smithy/util-utf8@2.0.0:
- resolution: {integrity: sha512-rctU1VkziY84n5OXe3bPNpKR001ZCME2JCaBBFgtiM2hfKbHFudc/BkMuPab8hRbLd0j3vbnBTTZ1igBf0wgiQ==}
+ /@smithy/util-utf8@2.0.2:
+ resolution: {integrity: sha512-qOiVORSPm6Ce4/Yu6hbSgNHABLP2VMv8QOC3tTDNHHlWY19pPyc++fBTbZPtx6egPXi4HQxKDnMxVxpbtX2GoA==}
engines: {node: '>=14.0.0'}
dependencies:
'@smithy/util-buffer-from': 2.0.0
tslib: 2.6.2
dev: false
- /@smithy/util-waiter@2.0.12:
- resolution: {integrity: sha512-3sENmyVa1NnOPoiT2NCApPmu7ukP7S/v7kL9IxNmnygkDldn7/yK0TP42oPJLwB2k3mospNsSePIlqdXEUyPHA==}
+ /@smithy/util-waiter@2.0.13:
+ resolution: {integrity: sha512-YovIQatiuM7giEsRFotqJa2i3EbU2EE3PgtpXgtLgpx5rXiZMAwPxXYDFVFhuO0lbqvc/Zx4n+ZIisXOHPSqyg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/abort-controller': 2.0.12
- '@smithy/types': 2.4.0
+ '@smithy/abort-controller': 2.0.13
+ '@smithy/types': 2.5.0
tslib: 2.6.2
dev: false
@@ -8280,7 +8244,7 @@ packages:
magic-string: 0.30.5
rollup: 3.29.4
typescript: 5.2.2
- vite: 4.5.0(terser@5.22.0)
+ vite: 4.5.0
transitivePeerDependencies:
- encoding
- supports-color
@@ -8300,8 +8264,8 @@ packages:
resolution: {integrity: sha512-qKIJs8gqXTy0eSEbt0OW5nsJqiV/2+N1eWoiBiIxoZ+8b0ACXIAUcE/N6AsEDUqIq8AMK7lebqjEfIAt2Sp7Mg==}
hasBin: true
dependencies:
- '@babel/core': 7.23.2
- '@babel/preset-env': 7.23.2(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/preset-env': 7.23.3(@babel/core@7.23.3)
'@babel/types': 7.23.0
'@ndelangen/get-tarball': 3.0.9
'@storybook/codemod': 7.5.1
@@ -8328,7 +8292,7 @@ packages:
get-port: 5.1.1
giget: 1.1.3
globby: 11.1.0
- jscodeshift: 0.14.0(@babel/preset-env@7.23.2)
+ jscodeshift: 0.14.0(@babel/preset-env@7.23.3)
leven: 3.1.0
ora: 5.4.1
prettier: 2.8.8
@@ -8356,9 +8320,9 @@ packages:
/@storybook/codemod@7.5.1:
resolution: {integrity: sha512-PqHGOz/CZnRG9pWgshezCacu524CrXOJrCOwMUP9OMpH0Jk/NhBkHaBZrB8wMjn5hekTj0UmRa/EN8wJm9CCUQ==}
dependencies:
- '@babel/core': 7.23.2
- '@babel/preset-env': 7.23.2(@babel/core@7.23.2)
- '@babel/types': 7.23.0
+ '@babel/core': 7.23.3
+ '@babel/preset-env': 7.23.3(@babel/core@7.23.3)
+ '@babel/types': 7.23.3
'@storybook/csf': 0.1.1
'@storybook/csf-tools': 7.5.1
'@storybook/node-logger': 7.5.1
@@ -8366,7 +8330,7 @@ packages:
'@types/cross-spawn': 6.0.4
cross-spawn: 7.0.3
globby: 11.1.0
- jscodeshift: 0.14.0(@babel/preset-env@7.23.2)
+ jscodeshift: 0.14.0(@babel/preset-env@7.23.3)
lodash: 4.17.21
prettier: 2.8.8
recast: 0.23.4
@@ -8502,10 +8466,10 @@ packages:
/@storybook/csf-tools@7.5.1:
resolution: {integrity: sha512-YChGbT1/odLS4RLb2HtK7ixM7mH5s7G5nOsWGKXalbza4SFKZIU2UzllEUsA+X8YfxMHnCD5TC3xLfK0ByxmzQ==}
dependencies:
- '@babel/generator': 7.23.0
- '@babel/parser': 7.23.0
- '@babel/traverse': 7.23.2
- '@babel/types': 7.23.0
+ '@babel/generator': 7.23.3
+ '@babel/parser': 7.23.3
+ '@babel/traverse': 7.23.3
+ '@babel/types': 7.23.3
'@storybook/csf': 0.1.1
'@storybook/types': 7.5.1
fs-extra: 11.1.1
@@ -8645,7 +8609,7 @@ packages:
react: 18.2.0
react-docgen: 6.0.4
react-dom: 18.2.0(react@18.2.0)
- vite: 4.5.0(terser@5.22.0)
+ vite: 4.5.0
transitivePeerDependencies:
- '@preact/preset-vite'
- encoding
@@ -8750,7 +8714,7 @@ packages:
dependencies:
'@storybook/channels': 7.5.1
'@types/babel__core': 7.20.3
- '@types/express': 4.17.20
+ '@types/express': 4.17.21
file-system-cache: 2.3.0
/@streamparser/json@0.0.17:
@@ -8801,8 +8765,8 @@ packages:
zod: 3.22.4
dev: false
- /@tailwindcss/forms@0.5.6(tailwindcss@3.3.5):
- resolution: {integrity: sha512-Fw+2BJ0tmAwK/w01tEFL5TiaJBX1NLT1/YbWgvm7ws3Qcn11kiXxzNTEQDMs5V3mQemhB56l3u0i9dwdzSQldA==}
+ /@tailwindcss/forms@0.5.7(tailwindcss@3.3.5):
+ resolution: {integrity: sha512-QE7X69iQI+ZXwldE+rzasvbJiyV/ju1FGHH0Qn2W3FKbuYtqp8LKcy6iSw79fVUT5/Vvf+0XgLCeYVG+UV6hOw==}
peerDependencies:
tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1'
dependencies:
@@ -8888,28 +8852,28 @@ packages:
/@types/babel__generator@7.6.6:
resolution: {integrity: sha512-66BXMKb/sUWbMdBNdMvajU7i/44RkrA3z/Yt1c7R5xejt8qh84iU54yUWCtm0QwGJlDcf/gg4zd/x4mpLAlb/w==}
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
/@types/babel__template@7.4.3:
resolution: {integrity: sha512-ciwyCLeuRfxboZ4isgdNZi/tkt06m8Tw6uGbBSBgWrnnZGNXiEyM27xc/PjXGQLqlZ6ylbgHMnm7ccF9tCkOeQ==}
dependencies:
- '@babel/parser': 7.23.0
- '@babel/types': 7.23.0
+ '@babel/parser': 7.23.3
+ '@babel/types': 7.23.3
/@types/babel__traverse@7.20.3:
resolution: {integrity: sha512-Lsh766rGEFbaxMIDH7Qa+Yha8cMVI3qAK6CHt3OR0YfxOIn5Z54iHiyDRycHrBqeIiqGa20Kpsv1cavfBKkRSw==}
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
- /@types/bcryptjs@2.4.5:
- resolution: {integrity: sha512-tOF6TivOIvq+TWQm78335CMdyVJhpBG3NUdWQDAp95ax4E2rSKbws/ELHLk5EBoucwx/tHt3/hhLOHwWJgVrSw==}
+ /@types/bcryptjs@2.4.6:
+ resolution: {integrity: sha512-9xlo6R2qDs5uixm0bcIqCeMCE6HiQsIyel9KQySStiyqNl2tnj2mP3DX1Nf56MD6KMenNNlBBsy3LJ7gUEQPXQ==}
dev: true
/@types/body-parser@1.19.4:
resolution: {integrity: sha512-N7UDG0/xiPQa2D/XrVJXjkWbpqHCd2sBaB32ggRF2l83RhPfamgKGF8gwwqyksS95qUS5ZYF9aF+lLPRlwI2UA==}
dependencies:
'@types/connect': 3.4.37
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
/@types/caseless@0.12.4:
resolution: {integrity: sha512-2in/lrHRNmDvHPgyormtEralhPcN3An1gLjJzj2Bw145VBxkQ75JEXW6CTdMAwShiHQcYsl2d10IjQSdJSJz4g==}
@@ -8918,24 +8882,24 @@ packages:
/@types/connect@3.4.37:
resolution: {integrity: sha512-zBUSRqkfZ59OcwXon4HVxhx5oWCJmc0OtBTK05M+p0dYjgN6iTwIL2T/WbsQZrEsdnwaF9cWQ+azOnpPvIqY3Q==}
dependencies:
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
/@types/cross-spawn@6.0.2:
resolution: {integrity: sha512-KuwNhp3eza+Rhu8IFI5HUXRP0LIhqH5cAjubUvGXXthh4YYBuP2ntwEX+Cz8GJoZUHlKo247wPWOfA9LYEq4cw==}
dependencies:
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
dev: true
/@types/cross-spawn@6.0.3:
resolution: {integrity: sha512-BDAkU7WHHRHnvBf5z89lcvACsvkz/n7Tv+HyD/uW76O29HoH1Tk/W6iQrepaZVbisvlEek4ygwT8IW7ow9XLAA==}
dependencies:
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
dev: true
/@types/cross-spawn@6.0.4:
resolution: {integrity: sha512-GGLpeThc2Bu8FBGmVn76ZU3lix17qZensEI4/MPty0aZpm2CHfgEMis31pf5X5EiudYKcPAsWciAsCALoPo5dw==}
dependencies:
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
dev: false
/@types/debug@4.1.10:
@@ -9010,13 +8974,13 @@ packages:
/@types/express-serve-static-core@4.17.39:
resolution: {integrity: sha512-BiEUfAiGCOllomsRAZOiMFP7LAnrifHpt56pc4Z7l9K6ACyN06Ns1JLMBxwkfLOjJRlSf06NwWsT7yzfpaVpyQ==}
dependencies:
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
'@types/qs': 6.9.9
'@types/range-parser': 1.2.6
'@types/send': 0.17.3
- /@types/express@4.17.20:
- resolution: {integrity: sha512-rOaqlkgEvOW495xErXMsmyX3WKBInbhG5eqojXYi3cGUaLoRDlXa5d52fkfWZT963AZ3v2eZ4MbKE6WpDAGVsw==}
+ /@types/express@4.17.21:
+ resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
dependencies:
'@types/body-parser': 1.19.4
'@types/express-serve-static-core': 4.17.39
@@ -9030,13 +8994,13 @@ packages:
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
dev: true
/@types/graceful-fs@4.1.8:
resolution: {integrity: sha512-NhRH7YzWq8WiNKVavKPBmtLYZHxNY19Hh+az28O/phfp68CF45pMFud+ZzJ8ewnxnC5smIdF3dqFeiSUQ5I+pw==}
dependencies:
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
dev: true
/@types/hast@2.3.7:
@@ -9048,7 +9012,7 @@ packages:
/@types/hoist-non-react-statics@3.3.4:
resolution: {integrity: sha512-ZchYkbieA+7tnxwX/SCBySx9WwvWR8TaP5tb2jRAzwvLb/rWchGw3v0w3pqUbUvj0GCwW2Xz/AVPSk6kUGctXQ==}
dependencies:
- '@types/react': 18.2.28
+ '@types/react': 18.2.37
hoist-non-react-statics: 3.3.2
dev: false
@@ -9077,8 +9041,8 @@ packages:
'@types/istanbul-lib-report': 3.0.2
dev: true
- /@types/jest@29.5.6:
- resolution: {integrity: sha512-/t9NnzkOpXb4Nfvg17ieHE6EeSjDS2SGSpNYfoLbUAeL/EOueU/RSdOWFpfQTXBEM7BguYW1XQ0EbM+6RlIh6w==}
+ /@types/jest@29.5.8:
+ resolution: {integrity: sha512-fXEFTxMV2Co8ZF5aYFJv+YeA08RTYJfhtN5c9JSv/mFEMe+xxjufCb+PHL+bJcMs/ebPUsBu+UNTEz+ydXrR6g==}
dependencies:
expect: 29.7.0
pretty-format: 29.7.0
@@ -9091,7 +9055,7 @@ packages:
/@types/jsdom@20.0.1:
resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==}
dependencies:
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
'@types/tough-cookie': 4.0.4
parse5: 7.1.2
dev: true
@@ -9103,16 +9067,16 @@ packages:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
dev: true
- /@types/jsonwebtoken@9.0.4:
- resolution: {integrity: sha512-8UYapdmR0QlxgvJmyE8lP7guxD0UGVMfknsdtCFZh4ovShdBl3iOI4zdvqBHrB/IS+xUj3PSx73Qkey1fhWz+g==}
+ /@types/jsonwebtoken@9.0.5:
+ resolution: {integrity: sha512-VRLSGzik+Unrup6BsouBeHsf4d1hOEgYWTm/7Nmw1sXoN1+tRly/Gy/po3yeahnP4jfnQWWAhQAqcNfH7ngOkA==}
dependencies:
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
dev: true
/@types/keyv@3.1.4:
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
dependencies:
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
dev: false
/@types/linkify-it@3.0.4:
@@ -9123,8 +9087,12 @@ packages:
resolution: {integrity: sha512-YI/M/4HRImtNf3pJgbF+W6FrXovqj+T+/HpENLTooK9PnkacBsDpeP3IpHab40CClUfhNmdM2WTNP2sa2dni5Q==}
dev: true
- /@types/markdown-it@13.0.5:
- resolution: {integrity: sha512-QhJP7hkq3FCrFNx0szMNCT/79CXfcEgUIA3jc5GBfeXqoKsk3R8JZm2wRXJ2DiyjbPE4VMFOSDemLFcUTZmHEQ==}
+ /@types/lodash@4.14.201:
+ resolution: {integrity: sha512-y9euML0cim1JrykNxADLfaG0FgD1g/yTHwUs/Jg9ZIU7WKj2/4IW9Lbb1WZbvck78W/lfGXFfe+u2EGfIJXdLQ==}
+ dev: true
+
+ /@types/markdown-it@13.0.6:
+ resolution: {integrity: sha512-0VqpvusJn1/lwRegCxcHVdmLfF+wIsprsKMC9xW8UPcTxhFcQtoN/fBU1zMe8pH7D/RuueMh2CaBaNv+GrLqTw==}
dependencies:
'@types/linkify-it': 3.0.4
'@types/mdurl': 1.0.4
@@ -9156,8 +9124,8 @@ packages:
/@types/mime@1.3.4:
resolution: {integrity: sha512-1Gjee59G25MrQGk8bsNvC6fxNiRgUlGn2wlhGf95a59DrprnnHk80FIMMFG9XHMdrfsuA119ht06QPDXA1Z7tw==}
- /@types/mime@3.0.3:
- resolution: {integrity: sha512-i8MBln35l856k5iOhKk2XJ4SeAWg75mLIpZB4v6imOagKL6twsukBZGDMNhdOVk7yRFTMPpfILocMos59Q1otQ==}
+ /@types/mime@3.0.4:
+ resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==}
/@types/minimatch@5.1.2:
resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
@@ -9173,7 +9141,7 @@ packages:
/@types/node-fetch@2.6.7:
resolution: {integrity: sha512-lX17GZVpJ/fuCjguZ5b3TjEbSENxmEk1B2z02yoXSK9WMEWRivhdSY73wWMn6bpcCDAOh6qAdktpKHIlkDk2lg==}
dependencies:
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
form-data: 4.0.0
/@types/node@12.20.55:
@@ -9189,6 +9157,12 @@ packages:
resolution: {integrity: sha512-eWO4K2Ji70QzKUqRy6oyJWUeB7+g2cRagT3T/nxYibYcT4y2BDL8lqolRXjTHmkZCdJfIPaY73KbJAZmcryxTQ==}
dependencies:
undici-types: 5.25.3
+ dev: true
+
+ /@types/node@20.9.0:
+ resolution: {integrity: sha512-nekiGu2NDb1BcVofVcEKMIwzlx4NjHlcjhoxxKBNLtz15Y1z7MYf549DFvkHSId02Ax6kGwWntIBPC3l/JZcmw==}
+ dependencies:
+ undici-types: 5.26.5
/@types/normalize-package-data@2.4.3:
resolution: {integrity: sha512-ehPtgRgaULsFG8x0NeYJvmyH1hmlfsNLujHe9dQEia/7MAJYdzMSi19JtchUHjmBA6XC/75dK55mzZH+RyieSg==}
@@ -9203,8 +9177,8 @@ packages:
/@types/prop-types@15.7.9:
resolution: {integrity: sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g==}
- /@types/qrcode@1.5.4:
- resolution: {integrity: sha512-ufYqUO7wUBq49hugJry+oIYKscvxIQerJSmXeny215aJKfrepN04DDZP8FCgxvV82kOqKPULCE4PIW3qUmZrRA==}
+ /@types/qrcode@1.5.5:
+ resolution: {integrity: sha512-CdfBi/e3Qk+3Z/fXYShipBT13OJ2fDO2Q2w5CIP5anLTLIndQG9z6P1cnm+8zCWSpm5dnxMFd/uREtb0EXuQzg==}
dependencies:
'@types/node': 20.8.6
dev: true
@@ -9215,10 +9189,10 @@ packages:
/@types/range-parser@1.2.6:
resolution: {integrity: sha512-+0autS93xyXizIYiyL02FCY8N+KkKPhILhcUSA276HxzreZ16kl+cmwvV2qAM/PuCCwPXzOXOWhiPcw20uSFcA==}
- /@types/react-dom@18.2.13:
- resolution: {integrity: sha512-eJIUv7rPP+EC45uNYp/ThhSpE16k22VJUknt5OLoH9tbXoi8bMhwLf5xRuWMywamNbWzhrSmU7IBJfPup1+3fw==}
+ /@types/react-dom@18.2.15:
+ resolution: {integrity: sha512-HWMdW+7r7MR5+PZqJF6YFNSCtjz1T0dsvo/f1BV6HkV+6erD/nA7wd9NM00KVG83zf2nJ7uATPO9ttdIPvi3gg==}
dependencies:
- '@types/react': 18.2.28
+ '@types/react': 18.2.37
dev: true
/@types/react-highlight-words@0.16.6:
@@ -9231,7 +9205,7 @@ packages:
resolution: {integrity: sha512-EQr7cChVzVUuqbA+J8ArWK1H0hLAHKOs21SIMrskKZ3nHNeE+LFYA+IsoZGhVOT8Ktjn3M20v4rnZKN3fLbypw==}
dependencies:
'@types/hoist-non-react-statics': 3.3.4
- '@types/react': 18.2.28
+ '@types/react': 18.2.37
hoist-non-react-statics: 3.3.2
redux: 4.2.1
dev: false
@@ -9243,8 +9217,15 @@ packages:
'@types/scheduler': 0.16.5
csstype: 3.1.2
- /@types/request-promise-native@1.0.20:
- resolution: {integrity: sha512-1dfdWY0u6mNkAheZ5UqBGY/ARpDXE5xJ+npN3COoTfrQTt4FmHrwp8548zU6F1LniUK75qk06HoOvCG+hS/8Zw==}
+ /@types/react@18.2.37:
+ resolution: {integrity: sha512-RGAYMi2bhRgEXT3f4B92WTohopH6bIXw05FuGlmJEnv/omEn190+QYEIYxIAuIBdKgboYYdVved2p1AxZVQnaw==}
+ dependencies:
+ '@types/prop-types': 15.7.9
+ '@types/scheduler': 0.16.5
+ csstype: 3.1.2
+
+ /@types/request-promise-native@1.0.21:
+ resolution: {integrity: sha512-NJ1M6iqWTEUT+qdP+OmXsRZ6tSdkoBdblHKatIWTVP1HdYpHU3IkfpLPf4MWb0+CC4Nl3TtLpYhDlhjZxytDIA==}
dependencies:
'@types/request': 2.48.11
dev: true
@@ -9253,7 +9234,7 @@ packages:
resolution: {integrity: sha512-HuihY1+Vss5RS9ZHzRyTGIzwPTdrJBkCm/mAeLRYrOQu/MGqyezKXWOK1VhCnR+SDbp9G2mRUP+OVEqCrzpcfA==}
dependencies:
'@types/caseless': 0.12.4
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
'@types/tough-cookie': 4.0.4
form-data: 2.5.1
dev: true
@@ -9265,7 +9246,7 @@ packages:
/@types/responselike@1.0.2:
resolution: {integrity: sha512-/4YQT5Kp6HxUDb4yhRkm0bJ7TbjvTddqX7PZ5hz6qV3pxSo72f/6YPRo+Mu2DU307tm9IioO69l7uAwn5XNcFA==}
dependencies:
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
dev: false
/@types/retry@0.12.0:
@@ -9282,14 +9263,14 @@ packages:
resolution: {integrity: sha512-/7fKxvKUoETxjFUsuFlPB9YndePpxxRAOfGC/yJdc9kTjTeP5kRCTzfnE8kPUKCeyiyIZu0YQ76s50hCedI1ug==}
dependencies:
'@types/mime': 1.3.4
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
/@types/serve-static@1.15.4:
resolution: {integrity: sha512-aqqNfs1XTF0HDrFdlY//+SGUxmdSUbjeRXb5iaZc3x0/vMbYmdw9qvOgHWOyyLFxSSRnUuP5+724zBgfw8/WAw==}
dependencies:
'@types/http-errors': 2.0.3
- '@types/mime': 3.0.3
- '@types/node': 20.8.6
+ '@types/mime': 3.0.4
+ '@types/node': 20.9.0
/@types/stack-utils@2.0.2:
resolution: {integrity: sha512-g7CK9nHdwjK2n0ymT2CW698FuWJRIx+RP6embAzZ2Qi8/ilIrA1Imt2LVSeHUzKvpoi7BhmmQcXz95eS0f2JXw==}
@@ -9309,7 +9290,7 @@ packages:
/@types/ws@8.5.8:
resolution: {integrity: sha512-flUksGIQCnJd6sZ1l5dqCEG/ksaoAg/eUwiLAGTJQcfgvZJKF++Ta4bJA6A5aPSJmsr+xlseHn4KLgVlNnvPTg==}
dependencies:
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
dev: false
/@types/yargs-parser@21.0.2:
@@ -9328,7 +9309,36 @@ packages:
'@types/yargs-parser': 21.0.2
dev: true
- /@typescript-eslint/eslint-plugin@6.9.0(@typescript-eslint/parser@6.8.0)(eslint@8.52.0)(typescript@5.2.2):
+ /@typescript-eslint/eslint-plugin@6.11.0(@typescript-eslint/parser@6.11.0)(eslint@8.53.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-uXnpZDc4VRjY4iuypDBKzW1rz9T5YBBK0snMn8MaTSNd2kMlj50LnLBABELjJiOL5YHk7ZD8hbSpI9ubzqYI0w==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ peerDependencies:
+ '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
+ eslint: ^7.0.0 || ^8.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@eslint-community/regexpp': 4.10.0
+ '@typescript-eslint/parser': 6.11.0(eslint@8.53.0)(typescript@5.2.2)
+ '@typescript-eslint/scope-manager': 6.11.0
+ '@typescript-eslint/type-utils': 6.11.0(eslint@8.53.0)(typescript@5.2.2)
+ '@typescript-eslint/utils': 6.11.0(eslint@8.53.0)(typescript@5.2.2)
+ '@typescript-eslint/visitor-keys': 6.11.0
+ debug: 4.3.4
+ eslint: 8.53.0
+ graphemer: 1.4.0
+ ignore: 5.2.4
+ natural-compare: 1.4.0
+ semver: 7.5.4
+ ts-api-utils: 1.0.3(typescript@5.2.2)
+ typescript: 5.2.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/eslint-plugin@6.9.0(@typescript-eslint/parser@6.8.0)(eslint@8.53.0)(typescript@5.2.2):
resolution: {integrity: sha512-lgX7F0azQwRPB7t7WAyeHWVfW1YJ9NIgd9mvGhfQpRY56X6AVf8mwM8Wol+0z4liE7XX3QOt8MN1rUKCfSjRIA==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
@@ -9340,13 +9350,13 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 6.8.0(eslint@8.52.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 6.8.0(eslint@8.53.0)(typescript@5.2.2)
'@typescript-eslint/scope-manager': 6.9.0
- '@typescript-eslint/type-utils': 6.9.0(eslint@8.52.0)(typescript@5.2.2)
- '@typescript-eslint/utils': 6.9.0(eslint@8.52.0)(typescript@5.2.2)
+ '@typescript-eslint/type-utils': 6.9.0(eslint@8.53.0)(typescript@5.2.2)
+ '@typescript-eslint/utils': 6.9.0(eslint@8.53.0)(typescript@5.2.2)
'@typescript-eslint/visitor-keys': 6.9.0
debug: 4.3.4
- eslint: 8.52.0
+ eslint: 8.53.0
graphemer: 1.4.0
ignore: 5.2.4
natural-compare: 1.4.0
@@ -9357,7 +9367,28 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/parser@6.8.0(eslint@8.52.0)(typescript@5.2.2):
+ /@typescript-eslint/parser@6.11.0(eslint@8.53.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-+whEdjk+d5do5nxfxx73oanLL9ghKO3EwM9kBCkUtWMRwWuPaFv9ScuqlYfQ6pAD6ZiJhky7TZ2ZYhrMsfMxVQ==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ peerDependencies:
+ eslint: ^7.0.0 || ^8.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/scope-manager': 6.11.0
+ '@typescript-eslint/types': 6.11.0
+ '@typescript-eslint/typescript-estree': 6.11.0(typescript@5.2.2)
+ '@typescript-eslint/visitor-keys': 6.11.0
+ debug: 4.3.4
+ eslint: 8.53.0
+ typescript: 5.2.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/parser@6.8.0(eslint@8.53.0)(typescript@5.2.2):
resolution: {integrity: sha512-5tNs6Bw0j6BdWuP8Fx+VH4G9fEPDxnVI7yH1IAPkQH5RUtvKwRoqdecAPdQXv4rSOADAaz1LFBZvZG7VbXivSg==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
@@ -9372,7 +9403,7 @@ packages:
'@typescript-eslint/typescript-estree': 6.8.0(typescript@5.2.2)
'@typescript-eslint/visitor-keys': 6.8.0
debug: 4.3.4
- eslint: 8.52.0
+ eslint: 8.53.0
typescript: 5.2.2
transitivePeerDependencies:
- supports-color
@@ -9386,6 +9417,14 @@ packages:
'@typescript-eslint/visitor-keys': 5.62.0
dev: true
+ /@typescript-eslint/scope-manager@6.11.0:
+ resolution: {integrity: sha512-0A8KoVvIURG4uhxAdjSaxy8RdRE//HztaZdG8KiHLP8WOXSk0vlF7Pvogv+vlJA5Rnjj/wDcFENvDaHb+gKd1A==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ dependencies:
+ '@typescript-eslint/types': 6.11.0
+ '@typescript-eslint/visitor-keys': 6.11.0
+ dev: true
+
/@typescript-eslint/scope-manager@6.8.0:
resolution: {integrity: sha512-xe0HNBVwCph7rak+ZHcFD6A+q50SMsFwcmfdjs9Kz4qDh5hWhaPhFjRs/SODEhroBI5Ruyvyz9LfwUJ624O40g==}
engines: {node: ^16.0.0 || >=18.0.0}
@@ -9402,7 +9441,27 @@ packages:
'@typescript-eslint/visitor-keys': 6.9.0
dev: true
- /@typescript-eslint/type-utils@6.9.0(eslint@8.52.0)(typescript@5.2.2):
+ /@typescript-eslint/type-utils@6.11.0(eslint@8.53.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-nA4IOXwZtqBjIoYrJcYxLRO+F9ri+leVGoJcMW1uqr4r1Hq7vW5cyWrA43lFbpRvQ9XgNrnfLpIkO3i1emDBIA==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ peerDependencies:
+ eslint: ^7.0.0 || ^8.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/typescript-estree': 6.11.0(typescript@5.2.2)
+ '@typescript-eslint/utils': 6.11.0(eslint@8.53.0)(typescript@5.2.2)
+ debug: 4.3.4
+ eslint: 8.53.0
+ ts-api-utils: 1.0.3(typescript@5.2.2)
+ typescript: 5.2.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/type-utils@6.9.0(eslint@8.53.0)(typescript@5.2.2):
resolution: {integrity: sha512-XXeahmfbpuhVbhSOROIzJ+b13krFmgtc4GlEuu1WBT+RpyGPIA4Y/eGnXzjbDj5gZLzpAXO/sj+IF/x2GtTMjQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
@@ -9413,9 +9472,9 @@ packages:
optional: true
dependencies:
'@typescript-eslint/typescript-estree': 6.9.0(typescript@5.2.2)
- '@typescript-eslint/utils': 6.9.0(eslint@8.52.0)(typescript@5.2.2)
+ '@typescript-eslint/utils': 6.9.0(eslint@8.53.0)(typescript@5.2.2)
debug: 4.3.4
- eslint: 8.52.0
+ eslint: 8.53.0
ts-api-utils: 1.0.3(typescript@5.2.2)
typescript: 5.2.2
transitivePeerDependencies:
@@ -9427,6 +9486,11 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
+ /@typescript-eslint/types@6.11.0:
+ resolution: {integrity: sha512-ZbEzuD4DwEJxwPqhv3QULlRj8KYTAnNsXxmfuUXFCxZmO6CF2gM/y+ugBSAQhrqaJL3M+oe4owdWunaHM6beqA==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ dev: true
+
/@typescript-eslint/types@6.8.0:
resolution: {integrity: sha512-p5qOxSum7W3k+llc7owEStXlGmSl8FcGvhYt8Vjy7FqEnmkCVlM3P57XQEGj58oqaBWDQXbJDZxwUWMS/EAPNQ==}
engines: {node: ^16.0.0 || >=18.0.0}
@@ -9458,6 +9522,27 @@ packages:
- supports-color
dev: true
+ /@typescript-eslint/typescript-estree@6.11.0(typescript@5.2.2):
+ resolution: {integrity: sha512-Aezzv1o2tWJwvZhedzvD5Yv7+Lpu1by/U1LZ5gLc4tCx8jUmuSCMioPFRjliN/6SJIvY6HpTtJIWubKuYYYesQ==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/types': 6.11.0
+ '@typescript-eslint/visitor-keys': 6.11.0
+ debug: 4.3.4
+ globby: 11.1.0
+ is-glob: 4.0.3
+ semver: 7.5.4
+ ts-api-utils: 1.0.3(typescript@5.2.2)
+ typescript: 5.2.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@typescript-eslint/typescript-estree@6.8.0(typescript@5.2.2):
resolution: {integrity: sha512-ISgV0lQ8XgW+mvv5My/+iTUdRmGspducmQcDw5JxznasXNnZn3SKNrTRuMsEXv+V/O+Lw9AGcQCfVaOPCAk/Zg==}
engines: {node: ^16.0.0 || >=18.0.0}
@@ -9500,19 +9585,19 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/utils@5.62.0(eslint@8.52.0)(typescript@5.2.2):
+ /@typescript-eslint/utils@5.62.0(eslint@8.53.0)(typescript@5.2.2):
resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.52.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.53.0)
'@types/json-schema': 7.0.14
'@types/semver': 7.5.4
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2)
- eslint: 8.52.0
+ eslint: 8.53.0
eslint-scope: 5.1.1
semver: 7.5.4
transitivePeerDependencies:
@@ -9520,19 +9605,38 @@ packages:
- typescript
dev: true
- /@typescript-eslint/utils@6.9.0(eslint@8.52.0)(typescript@5.2.2):
+ /@typescript-eslint/utils@6.11.0(eslint@8.53.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-p23ibf68fxoZy605dc0dQAEoUsoiNoP3MD9WQGiHLDuTSOuqoTsa4oAy+h3KDkTcxbbfOtUjb9h3Ta0gT4ug2g==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ peerDependencies:
+ eslint: ^7.0.0 || ^8.0.0
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.53.0)
+ '@types/json-schema': 7.0.14
+ '@types/semver': 7.5.4
+ '@typescript-eslint/scope-manager': 6.11.0
+ '@typescript-eslint/types': 6.11.0
+ '@typescript-eslint/typescript-estree': 6.11.0(typescript@5.2.2)
+ eslint: 8.53.0
+ semver: 7.5.4
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
+
+ /@typescript-eslint/utils@6.9.0(eslint@8.53.0)(typescript@5.2.2):
resolution: {integrity: sha512-5Wf+Jsqya7WcCO8me504FBigeQKVLAMPmUzYgDbWchINNh1KJbxCgVya3EQ2MjvJMVeXl3pofRmprqX6mfQkjQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.52.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.53.0)
'@types/json-schema': 7.0.14
'@types/semver': 7.5.4
'@typescript-eslint/scope-manager': 6.9.0
'@typescript-eslint/types': 6.9.0
'@typescript-eslint/typescript-estree': 6.9.0(typescript@5.2.2)
- eslint: 8.52.0
+ eslint: 8.53.0
semver: 7.5.4
transitivePeerDependencies:
- supports-color
@@ -9547,6 +9651,14 @@ packages:
eslint-visitor-keys: 3.4.3
dev: true
+ /@typescript-eslint/visitor-keys@6.11.0:
+ resolution: {integrity: sha512-+SUN/W7WjBr05uRxPggJPSzyB8zUpaYo2hByKasWbqr3PM8AXfZt8UHdNpBS1v9SA62qnSSMF3380SwDqqprgQ==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ dependencies:
+ '@typescript-eslint/types': 6.11.0
+ eslint-visitor-keys: 3.4.3
+ dev: true
+
/@typescript-eslint/visitor-keys@6.8.0:
resolution: {integrity: sha512-oqAnbA7c+pgOhW2OhGvxm0t1BULX5peQI/rLsNDpGM78EebV3C9IGbX5HNZabuZ6UQrYveCLjKo8Iy/lLlBkkg==}
engines: {node: ^16.0.0 || >=18.0.0}
@@ -9582,12 +9694,12 @@ packages:
peerDependencies:
vite: ^4.1.0-beta.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.23.3)
+ '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.23.3)
magic-string: 0.27.0
react-refresh: 0.14.0
- vite: 4.5.0(terser@5.22.0)
+ vite: 4.5.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -9603,7 +9715,7 @@ packages:
'@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.23.2)
'@types/babel__core': 7.20.3
react-refresh: 0.14.0
- vite: 4.5.0(terser@5.22.0)
+ vite: 4.5.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -9630,7 +9742,7 @@ packages:
/@vue/compiler-core@3.3.7:
resolution: {integrity: sha512-pACdY6YnTNVLXsB86YD8OF9ihwpolzhhtdLVHhBL6do/ykr6kKXNYABRtNMGrsQXpEXXyAdwvWWkuTbs4MFtPQ==}
dependencies:
- '@babel/parser': 7.23.0
+ '@babel/parser': 7.23.3
'@vue/shared': 3.3.7
estree-walker: 2.0.2
source-map-js: 1.0.2
@@ -9855,17 +9967,10 @@ packages:
dependencies:
acorn: 8.11.2
- /acorn-node@1.8.2:
- resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==}
- dependencies:
- acorn: 7.4.1
- acorn-walk: 7.2.0
- xtend: 4.0.2
- dev: false
-
/acorn-walk@7.2.0:
resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
engines: {node: '>=0.4.0'}
+ dev: true
/acorn-walk@8.3.0:
resolution: {integrity: sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA==}
@@ -9876,6 +9981,7 @@ packages:
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
engines: {node: '>=0.4.0'}
hasBin: true
+ dev: true
/acorn@8.11.2:
resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==}
@@ -10429,13 +10535,13 @@ packages:
resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
engines: {node: '>= 0.4'}
- /aws-crt@1.18.3:
- resolution: {integrity: sha512-SgY9bKtQQpuqWuXMdJS07lIr4JV80nFS4bpR9cW1TbfOhRLDBIHSHc/iat7T+6Co7+ukni1dhd5iZ0Uf24vqtQ==}
+ /aws-crt@1.19.0:
+ resolution: {integrity: sha512-pBRSpy4TsL/fxW7Lp1xpN1FhnxvtBXFYx3Njo/j/m8GSV3Ytq/mBetYq7vhDb7CJQmFJCWod9I0yShqjiSUuyQ==}
requiresBuild: true
dependencies:
'@aws-sdk/util-utf8-browser': 3.259.0
'@httptoolkit/websocket-stream': 6.0.1
- axios: 0.24.0
+ axios: 1.6.0
buffer: 6.0.3
crypto-js: 4.2.0
mqtt: 4.3.7
@@ -10468,14 +10574,6 @@ packages:
- debug
dev: true
- /axios@0.24.0:
- resolution: {integrity: sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==}
- dependencies:
- follow-redirects: 1.15.3
- transitivePeerDependencies:
- - debug
- dev: false
-
/axios@1.6.0:
resolution: {integrity: sha512-EZ1DYihju9pwVB+jg67ogm+Tmqc6JmhamRN6I4Zt8DfZu5lbcQGw3ozH9lFejSJgs/ibaef3A9PMXPLeefFGJg==}
dependencies:
@@ -10504,25 +10602,25 @@ packages:
js-tokens: 3.0.2
dev: false
- /babel-core@7.0.0-bridge.0(@babel/core@7.23.2):
+ /babel-core@7.0.0-bridge.0(@babel/core@7.23.3):
resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
dev: false
- /babel-jest@29.7.0(@babel/core@7.23.2):
+ /babel-jest@29.7.0(@babel/core@7.23.3):
resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.8.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@jest/transform': 29.7.0
'@types/babel__core': 7.20.3
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.6.3(@babel/core@7.23.2)
+ babel-preset-jest: 29.6.3(@babel/core@7.23.3)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -10548,81 +10646,81 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@babel/template': 7.22.15
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
'@types/babel__core': 7.20.3
'@types/babel__traverse': 7.20.3
dev: true
- /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.2):
+ /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.3):
resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/compat-data': 7.23.2
- '@babel/core': 7.23.2
- '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2)
+ '@babel/compat-data': 7.23.3
+ '@babel/core': 7.23.3
+ '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.3)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.2):
+ /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.3):
resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.3)
core-js-compat: 3.33.1
transitivePeerDependencies:
- supports-color
- /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.2):
+ /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.3):
resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.3)
transitivePeerDependencies:
- supports-color
- /babel-plugin-transform-hook-names@1.0.2(@babel/core@7.23.2):
+ /babel-plugin-transform-hook-names@1.0.2(@babel/core@7.23.3):
resolution: {integrity: sha512-5gafyjyyBTTdX/tQQ0hRgu4AhNHG/hqWi0ZZmg2xvs2FgRkJXzDNKBZCyoYqgFkovfDrgM8OoKg8karoUvWeCw==}
peerDependencies:
'@babel/core': ^7.12.10
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
dev: true
- /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.2):
+ /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.3):
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.3)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.3)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.3)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.3)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.3)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.3)
dev: true
- /babel-preset-jest@29.6.3(@babel/core@7.23.2):
+ /babel-preset-jest@29.6.3(@babel/core@7.23.3):
resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.3)
dev: true
/bach@1.2.0:
@@ -11755,7 +11853,7 @@ packages:
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@20.8.6)
+ jest-config: 29.7.0(@types/node@20.9.0)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -12136,10 +12234,6 @@ packages:
isobject: 3.0.1
dev: true
- /defined@1.0.1:
- resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==}
- dev: false
-
/defu@6.1.3:
resolution: {integrity: sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==}
dev: false
@@ -12215,16 +12309,6 @@ packages:
- supports-color
dev: false
- /detective@5.2.1:
- resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==}
- engines: {node: '>=0.8.0'}
- hasBin: true
- dependencies:
- acorn-node: 1.8.2
- defined: 1.0.1
- minimist: 1.2.8
- dev: false
-
/didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
@@ -12808,8 +12892,8 @@ packages:
source-map: 0.6.1
dev: true
- /eslint-config-next@14.0.0(eslint@8.52.0)(typescript@5.2.2):
- resolution: {integrity: sha512-jtXeE+/pGQ3h9n11QyyuPN50kO13GO5XvjU5ZRq6W+XTpOMjyobWmK2s7aowy0FtzA49krJzYzEU9s1RMwoJ6g==}
+ /eslint-config-next@14.0.3(eslint@8.53.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-IKPhpLdpSUyKofmsXUfrvBC49JMUTdeaD8ZIH4v9Vk0sC1X6URTuTJCLtA0Vwuj7V/CQh0oISuSTvNn5//Buew==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0
typescript: '>=3.3.1'
@@ -12817,42 +12901,42 @@ packages:
typescript:
optional: true
dependencies:
- '@next/eslint-plugin-next': 14.0.0
+ '@next/eslint-plugin-next': 14.0.3
'@rushstack/eslint-patch': 1.5.1
- '@typescript-eslint/parser': 6.8.0(eslint@8.52.0)(typescript@5.2.2)
- eslint: 8.52.0
+ '@typescript-eslint/parser': 6.11.0(eslint@8.53.0)(typescript@5.2.2)
+ eslint: 8.53.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.8.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.52.0)
- eslint-plugin-import: 2.29.0(@typescript-eslint/parser@6.8.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0)
- eslint-plugin-jsx-a11y: 6.7.1(eslint@8.52.0)
- eslint-plugin-react: 7.33.2(eslint@8.52.0)
- eslint-plugin-react-hooks: 4.6.0(eslint@8.52.0)
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.53.0)
+ eslint-plugin-import: 2.29.0(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.53.0)
+ eslint-plugin-jsx-a11y: 6.7.1(eslint@8.53.0)
+ eslint-plugin-react: 7.33.2(eslint@8.53.0)
+ eslint-plugin-react-hooks: 4.6.0(eslint@8.53.0)
typescript: 5.2.2
transitivePeerDependencies:
- eslint-import-resolver-webpack
- supports-color
dev: true
- /eslint-config-prettier@9.0.0(eslint@8.52.0):
+ /eslint-config-prettier@9.0.0(eslint@8.53.0):
resolution: {integrity: sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- eslint: 8.52.0
+ eslint: 8.53.0
dev: true
/eslint-config-riot@1.0.0:
resolution: {integrity: sha512-NB/L/1Y30qyJcG5xZxCJKW/+bqyj+llbcCwo9DEz8bESIP0SLTOQ8T1DWCCFc+wJ61AMEstj4511PSScqMMfCw==}
dev: true
- /eslint-config-turbo@1.8.8(eslint@8.52.0):
+ /eslint-config-turbo@1.8.8(eslint@8.53.0):
resolution: {integrity: sha512-+yT22sHOT5iC1sbBXfLIdXfbZuiv9bAyOXsxTxFCWelTeFFnANqmuKB3x274CFvf7WRuZ/vYP/VMjzU9xnFnxA==}
peerDependencies:
eslint: '>6.6.0'
dependencies:
- eslint: 8.52.0
- eslint-plugin-turbo: 1.8.8(eslint@8.52.0)
+ eslint: 8.53.0
+ eslint-plugin-turbo: 1.8.8(eslint@8.53.0)
dev: true
/eslint-import-resolver-node@0.3.9:
@@ -12865,7 +12949,7 @@ packages:
- supports-color
dev: true
- /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.8.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.52.0):
+ /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.53.0):
resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -12874,9 +12958,9 @@ packages:
dependencies:
debug: 4.3.4
enhanced-resolve: 5.15.0
- eslint: 8.52.0
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.8.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0)
- eslint-plugin-import: 2.29.0(@typescript-eslint/parser@6.8.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0)
+ eslint: 8.53.0
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.53.0)
+ eslint-plugin-import: 2.29.0(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.53.0)
fast-glob: 3.3.1
get-tsconfig: 4.7.2
is-core-module: 2.13.1
@@ -12888,7 +12972,7 @@ packages:
- supports-color
dev: true
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.8.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0):
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.53.0):
resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
peerDependencies:
@@ -12909,16 +12993,16 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 6.8.0(eslint@8.52.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 6.11.0(eslint@8.53.0)(typescript@5.2.2)
debug: 3.2.7
- eslint: 8.52.0
+ eslint: 8.53.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.8.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.52.0)
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.53.0)
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-plugin-import@2.29.0(@typescript-eslint/parser@6.8.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0):
+ /eslint-plugin-import@2.29.0(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.53.0):
resolution: {integrity: sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==}
engines: {node: '>=4'}
peerDependencies:
@@ -12928,16 +13012,16 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 6.8.0(eslint@8.52.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 6.11.0(eslint@8.53.0)(typescript@5.2.2)
array-includes: 3.1.7
array.prototype.findlastindex: 1.2.3
array.prototype.flat: 1.3.2
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 8.52.0
+ eslint: 8.53.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.8.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.52.0)
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.53.0)
hasown: 2.0.0
is-core-module: 2.13.1
is-glob: 4.0.3
@@ -12953,7 +13037,7 @@ packages:
- supports-color
dev: true
- /eslint-plugin-jsx-a11y@6.7.1(eslint@8.52.0):
+ /eslint-plugin-jsx-a11y@6.7.1(eslint@8.53.0):
resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==}
engines: {node: '>=4.0'}
peerDependencies:
@@ -12968,7 +13052,7 @@ packages:
axobject-query: 3.2.1
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- eslint: 8.52.0
+ eslint: 8.53.0
has: 1.0.4
jsx-ast-utils: 3.3.5
language-tags: 1.0.5
@@ -12978,12 +13062,12 @@ packages:
semver: 6.3.1
dev: true
- /eslint-plugin-n8n-nodes-base@1.16.0(eslint@8.52.0)(typescript@5.2.2):
- resolution: {integrity: sha512-OEztJRuT/jv/WvwRXbXNirdYYddpAo2KZEJeOsVniK1ZCChuG4rrZJU3sgMRZMK6W9Pr613uWabW2q8tU2eKJg==}
+ /eslint-plugin-n8n-nodes-base@1.16.1(eslint@8.53.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-TMlOiDj67tjv8eodnM6tsB0GeBwVpRbUN8/AQ/MRc7weP/rgLxfhUhzWkeiJMxYUJC3NLjemJbw7QDafKG9Kog==}
engines: {node: '>=18.10', pnpm: '>=8.6'}
requiresBuild: true
dependencies:
- '@typescript-eslint/utils': 6.9.0(eslint@8.52.0)(typescript@5.2.2)
+ '@typescript-eslint/utils': 6.11.0(eslint@8.53.0)(typescript@5.2.2)
camel-case: 4.1.2
indefinite: 2.4.3
pascal-case: 3.1.2
@@ -12996,24 +13080,24 @@ packages:
- typescript
dev: true
- /eslint-plugin-react-hooks@4.6.0(eslint@8.52.0):
+ /eslint-plugin-react-hooks@4.6.0(eslint@8.53.0):
resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
dependencies:
- eslint: 8.52.0
+ eslint: 8.53.0
dev: true
- /eslint-plugin-react-refresh@0.4.4(eslint@8.52.0):
+ /eslint-plugin-react-refresh@0.4.4(eslint@8.53.0):
resolution: {integrity: sha512-eD83+65e8YPVg6603Om2iCIwcQJf/y7++MWm4tACtEswFLYMwxwVWAfwN+e19f5Ad/FOyyNg9Dfi5lXhH3Y3rA==}
peerDependencies:
eslint: '>=7'
dependencies:
- eslint: 8.52.0
+ eslint: 8.53.0
dev: true
- /eslint-plugin-react@7.33.2(eslint@8.52.0):
+ /eslint-plugin-react@7.33.2(eslint@8.53.0):
resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==}
engines: {node: '>=4'}
peerDependencies:
@@ -13024,7 +13108,7 @@ packages:
array.prototype.tosorted: 1.1.2
doctrine: 2.1.0
es-iterator-helpers: 1.0.15
- eslint: 8.52.0
+ eslint: 8.53.0
estraverse: 5.3.0
jsx-ast-utils: 3.3.5
minimatch: 3.1.2
@@ -13038,15 +13122,15 @@ packages:
string.prototype.matchall: 4.0.10
dev: true
- /eslint-plugin-storybook@0.6.15(eslint@8.52.0)(typescript@5.2.2):
+ /eslint-plugin-storybook@0.6.15(eslint@8.53.0)(typescript@5.2.2):
resolution: {integrity: sha512-lAGqVAJGob47Griu29KXYowI4G7KwMoJDOkEip8ujikuDLxU+oWJ1l0WL6F2oDO4QiyUFXvtDkEkISMOPzo+7w==}
engines: {node: 12.x || 14.x || >= 16}
peerDependencies:
eslint: '>=6'
dependencies:
'@storybook/csf': 0.0.1
- '@typescript-eslint/utils': 5.62.0(eslint@8.52.0)(typescript@5.2.2)
- eslint: 8.52.0
+ '@typescript-eslint/utils': 5.62.0(eslint@8.53.0)(typescript@5.2.2)
+ eslint: 8.53.0
requireindex: 1.2.0
ts-dedent: 2.2.0
transitivePeerDependencies:
@@ -13054,12 +13138,12 @@ packages:
- typescript
dev: true
- /eslint-plugin-turbo@1.8.8(eslint@8.52.0):
+ /eslint-plugin-turbo@1.8.8(eslint@8.53.0):
resolution: {integrity: sha512-zqyTIvveOY4YU5jviDWw9GXHd4RiKmfEgwsjBrV/a965w0PpDwJgEUoSMB/C/dU310Sv9mF3DSdEjxjJLaw6rA==}
peerDependencies:
eslint: '>6.6.0'
dependencies:
- eslint: 8.52.0
+ eslint: 8.53.0
dev: true
/eslint-scope@5.1.1:
@@ -13082,15 +13166,15 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /eslint@8.52.0:
- resolution: {integrity: sha512-zh/JHnaixqHZsolRB/w9/02akBk9EPrOs9JwcTP2ek7yL5bVvXuRariiaAjjoJ5DvuwQ1WAE/HsMz+w17YgBCg==}
+ /eslint@8.53.0:
+ resolution: {integrity: sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.52.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.53.0)
'@eslint-community/regexpp': 4.10.0
- '@eslint/eslintrc': 2.1.2
- '@eslint/js': 8.52.0
+ '@eslint/eslintrc': 2.1.3
+ '@eslint/js': 8.53.0
'@humanwhocodes/config-array': 0.11.13
'@humanwhocodes/module-importer': 1.0.1
'@nodelib/fs.walk': 1.2.8
@@ -13829,6 +13913,24 @@ packages:
'@emotion/is-prop-valid': 0.8.8
dev: false
+ /framer-motion@10.16.5(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-GEzVjOYP2MIpV9bT/GbhcsBNoImG3/2X3O/xVNWmktkv9MdJ7P/44zELm/7Fjb+O3v39SmKFnoDQB32giThzpg==}
+ peerDependencies:
+ react: ^18.0.0
+ react-dom: ^18.0.0
+ peerDependenciesMeta:
+ react:
+ optional: true
+ react-dom:
+ optional: true
+ dependencies:
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ tslib: 2.6.2
+ optionalDependencies:
+ '@emotion/is-prop-valid': 0.8.8
+ dev: false
+
/fresh@0.5.2:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
@@ -15562,8 +15664,8 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.23.2
- '@babel/parser': 7.23.0
+ '@babel/core': 7.23.3
+ '@babel/parser': 7.23.3
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.1
@@ -15575,8 +15677,8 @@ packages:
resolution: {integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.23.2
- '@babel/parser': 7.23.0
+ '@babel/core': 7.23.3
+ '@babel/parser': 7.23.3
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 7.5.4
@@ -15658,7 +15760,7 @@ packages:
'@jest/expect': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
chalk: 4.1.2
co: 4.6.0
dedent: 1.5.1
@@ -15696,7 +15798,7 @@ packages:
create-jest: 29.7.0
exit: 0.1.2
import-local: 3.1.0
- jest-config: 29.7.0(@types/node@20.8.6)
+ jest-config: 29.7.0(@types/node@20.9.0)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -15707,7 +15809,7 @@ packages:
- ts-node
dev: true
- /jest-config@29.7.0(@types/node@20.8.6):
+ /jest-config@29.7.0(@types/node@20.9.0):
resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -15719,11 +15821,11 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.8.6
- babel-jest: 29.7.0(@babel/core@7.23.2)
+ '@types/node': 20.9.0
+ babel-jest: 29.7.0(@babel/core@7.23.3)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -15805,7 +15907,7 @@ packages:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
jest-mock: 29.7.0
jest-util: 29.7.0
dev: true
@@ -15830,7 +15932,7 @@ packages:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.8
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -15881,7 +15983,7 @@ packages:
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
dev: true
/jest-mock@29.7.0:
@@ -15889,7 +15991,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
jest-util: 29.7.0
dev: true
@@ -15944,7 +16046,7 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -15975,7 +16077,7 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
chalk: 4.1.2
cjs-module-lexer: 1.2.3
collect-v8-coverage: 1.0.2
@@ -15998,15 +16100,15 @@ packages:
resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.23.2
- '@babel/generator': 7.23.0
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.2)
- '@babel/types': 7.23.0
+ '@babel/core': 7.23.3
+ '@babel/generator': 7.23.3
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.3)
+ '@babel/types': 7.23.3
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.3)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -16027,7 +16129,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -16052,7 +16154,7 @@ packages:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -16064,7 +16166,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
merge-stream: 2.0.0
supports-color: 8.1.1
dev: false
@@ -16073,7 +16175,7 @@ packages:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -16169,23 +16271,23 @@ packages:
resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==}
dev: true
- /jscodeshift@0.14.0(@babel/preset-env@7.23.2):
+ /jscodeshift@0.14.0(@babel/preset-env@7.23.3):
resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==}
hasBin: true
peerDependencies:
'@babel/preset-env': ^7.1.6
dependencies:
- '@babel/core': 7.23.2
- '@babel/parser': 7.23.0
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.2)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.2)
- '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2)
- '@babel/preset-env': 7.23.2(@babel/core@7.23.2)
- '@babel/preset-flow': 7.22.15(@babel/core@7.23.2)
- '@babel/preset-typescript': 7.23.2(@babel/core@7.23.2)
- '@babel/register': 7.22.15(@babel/core@7.23.2)
- babel-core: 7.0.0-bridge.0(@babel/core@7.23.2)
+ '@babel/core': 7.23.3
+ '@babel/parser': 7.23.3
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.3)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.3)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.3)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.3)
+ '@babel/preset-env': 7.23.3(@babel/core@7.23.3)
+ '@babel/preset-flow': 7.22.15(@babel/core@7.23.3)
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.23.3)
+ '@babel/register': 7.22.15(@babel/core@7.23.3)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.23.3)
chalk: 4.1.2
flow-parser: 0.220.0
graceful-fs: 4.2.11
@@ -16804,9 +16906,11 @@ packages:
engines: {node: '>=8'}
dev: false
- /lru-cache@10.0.1:
- resolution: {integrity: sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==}
+ /lru-cache@10.0.2:
+ resolution: {integrity: sha512-Yj9mA8fPiVgOUpByoTZO5pNrcl5Yk37FcSHsUINpAsaBIEZIuqcCclDZJCVxqQShDsmYX8QG63svJiTbOATZwg==}
engines: {node: 14 || >=16.14}
+ dependencies:
+ semver: 7.5.4
/lru-cache@4.1.5:
resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
@@ -16825,8 +16929,8 @@ packages:
dependencies:
yallist: 4.0.0
- /lucide-react@0.290.0(react@18.2.0):
- resolution: {integrity: sha512-CBDPRLOPjdo+bVlxhaa7FVWaB8OrZZQ34mwm0Fsz9ut6JltN/Td55640ur8bRWSJuz6+nX2klKrpBpV7ktwD3Q==}
+ /lucide-react@0.292.0(react@18.2.0):
+ resolution: {integrity: sha512-rRgUkpEHWpa5VCT66YscInCQmQuPCB1RFRzkkxMxg4b+jaL0V12E3riWWR2Sh5OIiUhCwGW/ZExuEO4Az32E6Q==}
peerDependencies:
react: ^16.5.1 || ^17.0.0 || ^18.0.0
dependencies:
@@ -17948,8 +18052,8 @@ packages:
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- /nanoid@5.0.2:
- resolution: {integrity: sha512-2ustYUX1R2rL/Br5B/FMhi8d5/QzvkJ912rBYxskcpu0myTHzSZfTr1LAS2Sm7jxRUObRrSBFoyzwAhL49aVSg==}
+ /nanoid@5.0.3:
+ resolution: {integrity: sha512-I7X2b22cxA4LIHXPSqbBCEQSL+1wv8TuoefejsX4HFWyC6jc5JG7CEaxOltiKjc1M+YCS2YkrZZcj4+dytw9GA==}
engines: {node: ^18 || >=20}
hasBin: true
dev: false
@@ -17993,8 +18097,8 @@ packages:
engines: {node: '>=10'}
dev: true
- /next-auth@4.24.4(next@14.0.0)(nodemailer@6.9.7)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-5DGffi+OpkbU62vPQIJ1z+hFnmow+ec5Qrn9m6eoglIO51m0DlrmLxBduZEwKAYDEg9k2joi1yelgmq1vqK3aQ==}
+ /next-auth@4.24.5(next@14.0.0)(nodemailer@6.9.7)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-3RafV3XbfIKk6rF6GlLE4/KxjTcuMCifqrmD+98ejFq73SRoj2rmzoca8u764977lH/Q7jo6Xu6yM+Re1Mz/Og==}
peerDependencies:
next: ^12.2.5 || ^13 || ^14
nodemailer: ^6.6.5
@@ -18012,8 +18116,8 @@ packages:
nodemailer: 6.9.7
oauth: 0.9.15
openid-client: 5.6.1
- preact: 10.18.1
- preact-render-to-string: 5.2.6(preact@10.18.1)
+ preact: 10.19.2
+ preact-render-to-string: 5.2.6(preact@10.19.2)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
uuid: 8.3.2
@@ -18920,7 +19024,7 @@ packages:
resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
- lru-cache: 10.0.1
+ lru-cache: 10.0.2
minipass: 7.0.4
/path-to-regexp@0.1.7:
@@ -19063,7 +19167,7 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /postcss-css-variables@0.18.0(postcss@8.4.21):
+ /postcss-css-variables@0.18.0(postcss@8.4.31):
resolution: {integrity: sha512-lYS802gHbzn1GI+lXvy9MYIYDuGnl1WB4FTKoqMQqJ3Mab09A7a/1wZvGTkCEZJTM8mSbIyb1mJYn8f0aPye0Q==}
peerDependencies:
postcss: ^8.2.6
@@ -19071,19 +19175,7 @@ packages:
balanced-match: 1.0.2
escape-string-regexp: 1.0.5
extend: 3.0.2
- postcss: 8.4.21
- dev: false
-
- /postcss-import@14.1.0(postcss@8.4.21):
- resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- postcss: ^8.0.0
- dependencies:
- postcss: 8.4.21
- postcss-value-parser: 4.2.0
- read-cache: 1.0.0
- resolve: 1.22.8
+ postcss: 8.4.31
dev: false
/postcss-import@15.1.0(postcss@8.4.31):
@@ -19097,16 +19189,6 @@ packages:
read-cache: 1.0.0
resolve: 1.22.8
- /postcss-js@4.0.1(postcss@8.4.21):
- resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
- engines: {node: ^12 || ^14 || >= 16}
- peerDependencies:
- postcss: ^8.4.21
- dependencies:
- camelcase-css: 2.0.1
- postcss: 8.4.21
- dev: false
-
/postcss-js@4.0.1(postcss@8.4.31):
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
@@ -19116,23 +19198,6 @@ packages:
camelcase-css: 2.0.1
postcss: 8.4.31
- /postcss-load-config@3.1.4(postcss@8.4.21):
- resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
- engines: {node: '>= 10'}
- peerDependencies:
- postcss: '>=8.0.9'
- ts-node: '>=9.0.0'
- peerDependenciesMeta:
- postcss:
- optional: true
- ts-node:
- optional: true
- dependencies:
- lilconfig: 2.1.0
- postcss: 8.4.21
- yaml: 1.10.2
- dev: false
-
/postcss-load-config@4.0.1(postcss@8.4.31):
resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
engines: {node: '>= 14'}
@@ -19149,16 +19214,6 @@ packages:
postcss: 8.4.31
yaml: 2.3.3
- /postcss-nested@6.0.0(postcss@8.4.21):
- resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==}
- engines: {node: '>=12.0'}
- peerDependencies:
- postcss: ^8.2.14
- dependencies:
- postcss: 8.4.21
- postcss-selector-parser: 6.0.13
- dev: false
-
/postcss-nested@6.0.1(postcss@8.4.31):
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
engines: {node: '>=12.0'}
@@ -19194,15 +19249,6 @@ packages:
source-map-js: 1.0.2
dev: false
- /postcss@8.4.21:
- resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==}
- engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.6
- picocolors: 1.0.0
- source-map-js: 1.0.2
- dev: false
-
/postcss@8.4.31:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
@@ -19211,8 +19257,8 @@ packages:
picocolors: 1.0.0
source-map-js: 1.0.2
- /posthog-js@1.87.3:
- resolution: {integrity: sha512-aHs7owrIgptnsTZjlPAJG0HRBLIHlThsCGhET0PaYKdcmg2g90pqIRv1Y9hiemEtATXDAHUmwbcCzx4AopaW7g==}
+ /posthog-js@1.91.1:
+ resolution: {integrity: sha512-Pj4mqCT8p4JdEXOwdZ1lNFU4W8a+Uv7zZs3FIBvvFnnXcMak8Fr8ns6RTTdWo3UQqZGD7iuarYcwTYI8E5UHdA==}
dependencies:
fflate: 0.4.8
dev: false
@@ -19227,17 +19273,17 @@ packages:
- debug
dev: false
- /preact-render-to-string@5.2.6(preact@10.18.1):
+ /preact-render-to-string@5.2.6(preact@10.19.2):
resolution: {integrity: sha512-JyhErpYOvBV1hEPwIxc/fHWXPfnEGdRKxc8gFdAZ7XV4tlzyzG847XAyEZqoDnynP88akM4eaHcSOzNcLWFguw==}
peerDependencies:
preact: '>=10'
dependencies:
- preact: 10.18.1
+ preact: 10.19.2
pretty-format: 3.8.0
dev: false
- /preact@10.18.1:
- resolution: {integrity: sha512-mKUD7RRkQQM6s7Rkmi7IFkoEHjuFqRQUaXamO61E6Nn7vqF/bo7EZCmSyrUnp2UWHw0O7XjZ2eeXis+m7tf4lg==}
+ /preact@10.19.2:
+ resolution: {integrity: sha512-UA9DX/OJwv6YwP9Vn7Ti/vF80XL+YA5H2l7BpCtUr3ya8LWHFzpiO5R+N7dN16ujpIxhekRFuOOF82bXX7K/lg==}
/prebuild-install@7.1.1:
resolution: {integrity: sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==}
@@ -19400,29 +19446,29 @@ packages:
- supports-color
dev: true
- /prisma-json-types-generator@3.0.2(prisma@5.5.2)(typescript@5.2.2):
- resolution: {integrity: sha512-nhpG3Cr2sbj8Rjhm1ea1vJvpqLxqL+jx9TmJzNaXyGe3RF/tdVWfvQ1KRFFwvVRvZbPWrqx+4wtS/MJ4U9hLxA==}
+ /prisma-json-types-generator@3.0.3(prisma@5.6.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-6TT1J6biRpQdU1Z7ggLeQ74pQNFMxxvT2vwTc9/yYV3znDhy9kW/e/CE6j0XhL8nkP2xzshtCQ1Y/EAh+LO3jQ==}
engines: {node: '>=14.0'}
hasBin: true
peerDependencies:
prisma: ^5.1
typescript: ^5.1
dependencies:
- '@prisma/generator-helper': 5.4.1
- prisma: 5.5.2
+ '@prisma/generator-helper': 5.5.2
+ prisma: 5.6.0
tslib: 2.6.2
typescript: 5.2.2
transitivePeerDependencies:
- supports-color
dev: true
- /prisma@5.5.2:
- resolution: {integrity: sha512-WQtG6fevOL053yoPl6dbHV+IWgKo25IRN4/pwAGqcWmg7CrtoCzvbDbN9fXUc7QS2KK0LimHIqLsaCOX/vHl8w==}
+ /prisma@5.6.0:
+ resolution: {integrity: sha512-EEaccku4ZGshdr2cthYHhf7iyvCcXqwJDvnoQRAJg5ge2Tzpv0e2BaMCp+CbbDUwoVTzwgOap9Zp+d4jFa2O9A==}
engines: {node: '>=16.13'}
hasBin: true
requiresBuild: true
dependencies:
- '@prisma/engines': 5.5.2
+ '@prisma/engines': 5.6.0
/prismjs@1.27.0:
resolution: {integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==}
@@ -19601,11 +19647,6 @@ packages:
engines: {node: '>=8'}
dev: true
- /quick-lru@5.1.1:
- resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
- engines: {node: '>=10'}
- dev: false
-
/raf-schd@4.0.3:
resolution: {integrity: sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ==}
dev: false
@@ -19701,7 +19742,7 @@ packages:
resolution: {integrity: sha512-gF+p+1ZwC2eO66bt763Tepmh5q9kDiFIrqW3YjUV/a+L96h0m5+/wSFQoOHL2cffyrPMZMxP03IgbggJ11QbOw==}
engines: {node: '>=14.18.0'}
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.3
'@babel/traverse': 7.23.2
'@babel/types': 7.23.0
'@types/babel__core': 7.20.3
@@ -19783,8 +19824,8 @@ packages:
react: 18.2.0
dev: false
- /react-hook-form@7.47.0(react@18.2.0):
- resolution: {integrity: sha512-F/TroLjTICipmHeFlMrLtNLceO2xr1jU3CyiNla5zdwsGUGu2UOxxR4UyJgLlhMwLW/Wzp4cpJ7CPfgJIeKdSg==}
+ /react-hook-form@7.48.2(react@18.2.0):
+ resolution: {integrity: sha512-H0T2InFQb1hX7qKtDIZmvpU1Xfn/bdahWBN1fH19gSe4bBEqTfmlr7H3XWTaVtiK4/tpPaI1F3355GPMZYge+A==}
engines: {node: '>=12.22.0'}
peerDependencies:
react: ^16.8.0 || ^17 || ^18
@@ -19814,6 +19855,14 @@ packages:
react: 18.2.0
dev: false
+ /react-icons@4.12.0(react@18.2.0):
+ resolution: {integrity: sha512-IBaDuHiShdZqmfc/TwHu6+d6k2ltNCf3AszxNmjJc1KUfXdEeRJOKyNvLmAHaarhzGmTSVygNdyu8/opXv2gaw==}
+ peerDependencies:
+ react: '*'
+ dependencies:
+ react: 18.2.0
+ dev: false
+
/react-inspector@6.0.2(react@18.2.0):
resolution: {integrity: sha512-x+b7LxhmHXjHoU/VrFAzw5iutsILRoYyDq97EDYdFpPLcvqtEzk4ZSZSQjnFPbr5T57tLXnHcqFYoN1pI6u8uQ==}
peerDependencies:
@@ -19835,7 +19884,7 @@ packages:
/react-is@18.2.0:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
- /react-markdown@8.0.7(@types/react@18.2.28)(react@18.2.0):
+ /react-markdown@8.0.7(@types/react@18.2.37)(react@18.2.0):
resolution: {integrity: sha512-bvWbzG4MtOU62XqBx3Xx+zB2raaFFsq4mYiAzfjXJMEz2sixgeAfraA3tvzULF02ZdOMUOKTBFFaZJDDrq+BJQ==}
peerDependencies:
'@types/react': '>=16'
@@ -19843,7 +19892,7 @@ packages:
dependencies:
'@types/hast': 2.3.7
'@types/prop-types': 15.7.9
- '@types/react': 18.2.28
+ '@types/react': 18.2.37
'@types/unist': 2.0.9
comma-separated-tokens: 2.0.3
hast-util-whitespace: 2.0.1
@@ -20625,6 +20674,26 @@ packages:
fsevents: 2.3.3
dev: true
+ /rollup@4.4.1:
+ resolution: {integrity: sha512-idZzrUpWSblPJX66i+GzrpjKE3vbYrlWirUHteoAbjKReZwa0cohAErOYA5efoMmNCdvG9yrJS+w9Kl6csaH4w==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.4.1
+ '@rollup/rollup-android-arm64': 4.4.1
+ '@rollup/rollup-darwin-arm64': 4.4.1
+ '@rollup/rollup-darwin-x64': 4.4.1
+ '@rollup/rollup-linux-arm-gnueabihf': 4.4.1
+ '@rollup/rollup-linux-arm64-gnu': 4.4.1
+ '@rollup/rollup-linux-arm64-musl': 4.4.1
+ '@rollup/rollup-linux-x64-gnu': 4.4.1
+ '@rollup/rollup-linux-x64-musl': 4.4.1
+ '@rollup/rollup-win32-arm64-msvc': 4.4.1
+ '@rollup/rollup-win32-ia32-msvc': 4.4.1
+ '@rollup/rollup-win32-x64-msvc': 4.4.1
+ fsevents: 2.3.3
+ dev: true
+
/rtl-css-js@1.16.1:
resolution: {integrity: sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==}
dependencies:
@@ -21537,11 +21606,11 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- /stripe@14.2.0:
- resolution: {integrity: sha512-lMjDOyJbt+NVSDvkTathSP7uEV35l7oU8UrhBJrYD8lUi43BWujq8E9QHd3o9D2KPBR1Cze5DCw5s1btnLfdMA==}
+ /stripe@14.4.0:
+ resolution: {integrity: sha512-E3IxDo/Bvu0TtYrKfAf8lEYd0beTjFSN4xemuw2oEfUyxFpJyrzRZOw50HIEXFYYHWNDORicd8G8R4joCbN3/Q==}
engines: {node: '>=12.*'}
dependencies:
- '@types/node': 20.8.6
+ '@types/node': 20.9.0
qs: 6.11.2
dev: false
@@ -21646,40 +21715,40 @@ packages:
/synchronous-promise@2.0.17:
resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==}
- /tailwind-merge@1.14.0:
- resolution: {integrity: sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==}
+ /tailwind-merge@2.0.0:
+ resolution: {integrity: sha512-WO8qghn9yhsldLSg80au+3/gY9E4hFxIvQ3qOmlpXnqpDKoMruKfi/56BbbMg6fHTQJ9QD3cc79PoWqlaQE4rw==}
+ dependencies:
+ '@babel/runtime': 7.23.2
dev: false
- /tailwindcss@3.2.7(postcss@8.4.21):
- resolution: {integrity: sha512-B6DLqJzc21x7wntlH/GsZwEXTBttVSl1FtCzC8WP4oBc/NKef7kaax5jeihkkCEWc831/5NDJ9gRNDK6NEioQQ==}
- engines: {node: '>=12.13.0'}
+ /tailwindcss@3.3.2:
+ resolution: {integrity: sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==}
+ engines: {node: '>=14.0.0'}
hasBin: true
- peerDependencies:
- postcss: ^8.0.9
dependencies:
+ '@alloc/quick-lru': 5.2.0
arg: 5.0.2
chokidar: 3.5.3
- color-name: 1.1.4
- detective: 5.2.1
didyoumean: 1.2.2
dlv: 1.1.3
fast-glob: 3.3.1
glob-parent: 6.0.2
is-glob: 4.0.3
+ jiti: 1.20.0
lilconfig: 2.1.0
micromatch: 4.0.5
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.0
- postcss: 8.4.21
- postcss-import: 14.1.0(postcss@8.4.21)
- postcss-js: 4.0.1(postcss@8.4.21)
- postcss-load-config: 3.1.4(postcss@8.4.21)
- postcss-nested: 6.0.0(postcss@8.4.21)
+ postcss: 8.4.31
+ postcss-import: 15.1.0(postcss@8.4.31)
+ postcss-js: 4.0.1(postcss@8.4.31)
+ postcss-load-config: 4.0.1(postcss@8.4.31)
+ postcss-nested: 6.0.1(postcss@8.4.31)
postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
- quick-lru: 5.1.1
resolve: 1.22.8
+ sucrase: 3.34.0
transitivePeerDependencies:
- ts-node
dev: false
@@ -21846,12 +21915,12 @@ packages:
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.1
- terser: 5.22.0
+ terser: 5.24.0
webpack: 5.89.0
dev: false
- /terser@5.22.0:
- resolution: {integrity: sha512-hHZVLgRA2z4NWcN6aS5rQDc+7Dcy58HOf2zbYwmFcQ+ua3h6eEFf5lIDKTzbWwlazPyOZsFQO8V80/IjVNExEw==}
+ /terser@5.24.0:
+ resolution: {integrity: sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -22294,13 +22363,13 @@ packages:
turbo-windows-arm64: 1.10.16
dev: true
- /tw-to-css@0.0.11:
- resolution: {integrity: sha512-uIJuEBIwyHzZg9xyGyEgDWHIkbAwEC4bhEHQ4THPuN5SToR7Zlhes5ffMjqtrv+WdtTmudTHTdc9VwUldy0FxQ==}
+ /tw-to-css@0.0.12:
+ resolution: {integrity: sha512-rQAsQvOtV1lBkyCw+iypMygNHrShYAItES5r8fMsrhhaj5qrV2LkZyXc8ccEH+u5bFjHjQ9iuxe90I7Kykf6pw==}
engines: {node: '>=16.0.0'}
dependencies:
- postcss: 8.4.21
- postcss-css-variables: 0.18.0(postcss@8.4.21)
- tailwindcss: 3.2.7(postcss@8.4.21)
+ postcss: 8.4.31
+ postcss-css-variables: 0.18.0(postcss@8.4.31)
+ tailwindcss: 3.3.2
transitivePeerDependencies:
- ts-node
dev: false
@@ -22490,6 +22559,7 @@ packages:
/undici-types@5.25.3:
resolution: {integrity: sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==}
+ dev: true
/undici-types@5.26.5:
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
@@ -23059,8 +23129,8 @@ packages:
replace-ext: 1.0.1
dev: true
- /vite-plugin-dts@3.6.2(typescript@5.2.2)(vite@4.5.0):
- resolution: {integrity: sha512-P2o3IJtQLJZP1aSbiAzQM35QWOucrEH7ZQlfE9cWZYetTgP0apEgd/ZxaNQGPBCWEuTYNjWWHUW9MyIlweRiRQ==}
+ /vite-plugin-dts@3.6.3(typescript@5.2.2)(vite@5.0.0):
+ resolution: {integrity: sha512-NyRvgobl15rYj65coi/gH7UAEH+CpSjh539DbGb40DfOTZSvDLNYTzc8CK4460W+LqXuMK7+U3JAxRB3ksrNPw==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -23075,7 +23145,7 @@ packages:
debug: 4.3.4
kolorist: 1.8.0
typescript: 5.2.2
- vite: 4.5.0(terser@5.22.0)
+ vite: 5.0.0(terser@5.24.0)
vue-tsc: 1.8.22(typescript@5.2.2)
transitivePeerDependencies:
- '@types/node'
@@ -23083,7 +23153,7 @@ packages:
- supports-color
dev: true
- /vite-tsconfig-paths@4.2.1(typescript@5.2.2)(vite@4.5.0):
+ /vite-tsconfig-paths@4.2.1(typescript@5.2.2)(vite@5.0.0):
resolution: {integrity: sha512-GNUI6ZgPqT3oervkvzU+qtys83+75N/OuDaQl7HmOqFTb0pjZsuARrRipsyJhJ3enqV8beI1xhGbToR4o78nSQ==}
peerDependencies:
vite: '*'
@@ -23094,13 +23164,13 @@ packages:
debug: 4.3.4
globrex: 0.1.2
tsconfck: 2.1.2(typescript@5.2.2)
- vite: 4.5.0(terser@5.22.0)
+ vite: 5.0.0(terser@5.24.0)
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /vite@4.5.0(terser@5.22.0):
+ /vite@4.5.0:
resolution: {integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
@@ -23131,7 +23201,42 @@ packages:
esbuild: 0.18.20
postcss: 8.4.31
rollup: 3.29.4
- terser: 5.22.0
+ optionalDependencies:
+ fsevents: 2.3.3
+ dev: true
+
+ /vite@5.0.0(terser@5.24.0):
+ resolution: {integrity: sha512-ESJVM59mdyGpsiNAeHQOR/0fqNoOyWPYesFto8FFZugfmhdHx8Fzd8sF3Q/xkVhZsyOxHfdM7ieiVAorI9RjFw==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ dependencies:
+ esbuild: 0.19.5
+ postcss: 8.4.31
+ rollup: 4.4.1
+ terser: 5.24.0
optionalDependencies:
fsevents: 2.3.3
dev: true
@@ -23579,11 +23684,6 @@ packages:
/yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- /yaml@1.10.2:
- resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
- engines: {node: '>= 6'}
- dev: false
-
/yaml@2.3.3:
resolution: {integrity: sha512-zw0VAJxgeZ6+++/su5AFoqBbZbrEakwu+X0M5HmcwUiBL7AzcuPKjj5we4xfQLp78LkEMpD0cOnUhmgOVy3KdQ==}
engines: {node: '>= 14'}
@@ -23720,7 +23820,7 @@ packages:
readable-stream: 3.6.2
dev: true
- /zod-prisma@0.5.4(prisma@5.5.2)(zod@3.22.4):
+ /zod-prisma@0.5.4(prisma@5.6.0)(zod@3.22.4):
resolution: {integrity: sha512-5Ca4Qd1a1jy1T/NqCEpbr0c+EsbjJfJ/7euEHob3zDvtUK2rTuD1Rc/vfzH8q8PtaR2TZbysD88NHmrLwpv3Xg==}
engines: {node: '>=14'}
hasBin: true
@@ -23734,7 +23834,7 @@ packages:
dependencies:
'@prisma/generator-helper': 3.8.1
parenthesis: 3.1.8
- prisma: 5.5.2
+ prisma: 5.6.0
ts-morph: 13.0.3
zod: 3.22.4
dev: true
@@ -23746,7 +23846,7 @@ packages:
/zod@3.22.4:
resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==}
- /zustand@4.4.4(@types/react@18.2.28)(react@18.2.0):
+ /zustand@4.4.4(@types/react@18.2.37)(react@18.2.0):
resolution: {integrity: sha512-5UTUIAiHMNf5+mFp7/AnzJXS7+XxktULFN0+D1sCiZWyX7ZG+AQpqs2qpYrynRij4QvoDdCD+U+bmg/cG3Ucxw==}
engines: {node: '>=12.7.0'}
peerDependencies:
@@ -23761,7 +23861,7 @@ packages:
react:
optional: true
dependencies:
- '@types/react': 18.2.28
+ '@types/react': 18.2.37
react: 18.2.0
use-sync-external-store: 1.2.0(react@18.2.0)
dev: false