Merge pull request 'Correction des effets de bords liés à la migration vers la v5' (#3) from upgrade-fix into master

Reviewed-on: https://codeberg.org/OKI/api.oki.re/pulls/3
This commit is contained in:
Cédric Famibelle-Pronzola
2026-04-28 11:32:04 +02:00
8 changed files with 211 additions and 212 deletions
+2 -2
View File
@@ -21,9 +21,9 @@
}, },
"devDependencies": {}, "devDependencies": {},
"dependencies": { "dependencies": {
"@strapi/plugin-users-permissions": "5.42.1", "@strapi/plugin-users-permissions": "5.43.0",
"@strapi/provider-email-nodemailer": "^4.26.1", "@strapi/provider-email-nodemailer": "^4.26.1",
"@strapi/strapi": "5.42.1", "@strapi/strapi": "5.43.0",
"better-sqlite3": "^12.9.0", "better-sqlite3": "^12.9.0",
"diff": "^5.1.0", "diff": "^5.1.0",
"react": "^18.0.0", "react": "^18.0.0",
+1 -1
View File
@@ -27,7 +27,7 @@ module.exports = createCoreController('api::artiste.artiste', ({strapi}) => ({
} }
const user = await strapi.documents('plugin::users-permissions.user').findOne({ const user = await strapi.documents('plugin::users-permissions.user').findOne({
documentId: "__TODO__" documentId: body.data.user.documentId
}) })
if (!user) { if (!user) {
@@ -22,7 +22,7 @@ module.exports = createCoreController('api::commentaire.commentaire', ({strapi})
} }
} }
const user = await strapi.documents('plugin::users-permissions.user').findOne({ const user = await strapi.documents('plugin::users-permissions.user').findOne({
documentId: "__TODO__" documentId: data.user.documentId
}) })
if (!user) { if (!user) {
@@ -36,7 +36,7 @@ module.exports = createCoreController('api::commentaire.commentaire', ({strapi})
data.user = user.id data.user = user.id
const parole = await strapi.documents('api::parole.parole').findOne({ const parole = await strapi.documents('api::parole.parole').findOne({
documentId: "__TODO__", documentId: user.documentId,
fields: ['id'] fields: ['id']
}) })
@@ -51,7 +51,7 @@ module.exports = createCoreController('api::commentaire.commentaire', ({strapi})
}) })
await strapi.documents('api::parole.parole').update({ await strapi.documents('api::parole.parole').update({
documentId: "__TODO__", documentId: user.documentId,
data: { data: {
commentaires: [newCommentaire.id] commentaires: [newCommentaire.id]
@@ -31,7 +31,7 @@ const isSlugExists = async existingSlug => {
} }
const jwennAwtisEpiId = async artistesIds => { const jwennAwtisEpiId = async artistesIds => {
if (artistesIds.length === 0) { if (!artistesIds || artistesIds.length === 0) {
throw new ApplicationError('Champ obligatoire. Veuillez choisir au moins un artiste.'); throw new ApplicationError('Champ obligatoire. Veuillez choisir au moins un artiste.');
} }
@@ -53,8 +53,8 @@ const jwennUserEpiId = async userId => {
} }
const user = await strapi.db.query('plugin::users-permissions.user').findOne({ const user = await strapi.db.query('plugin::users-permissions.user').findOne({
where: {id: userId} where: {user: userId}
}) })
if (!user) { if (!user) {
throw new ApplicationError('Utilisateur introuvable.') throw new ApplicationError('Utilisateur introuvable.')
@@ -116,43 +116,36 @@ const jwennSuperAdminEpiId = async userAdminId => {
module.exports = { module.exports = {
beforeCreate: async event => { beforeCreate: async event => {
let {data} = event.params let {data} = event.params
delete data.createdBy
delete data.updatedBy
strapi.service('api::parole.parole').validateParoles(data.titre, data.transcription) strapi.service('api::parole.parole').validateParoles(data.titre, data.transcription)
const userAdmin = await jwennUserAdminEpiId(data?.createdBy)
if (userAdmin) {
data.userAdmin = userAdmin
}
let artistesIds = [] let artistesIds = []
if (data?.artistes?.connect) { if (data?.artistes?.connect?.length) {
for (const artiste of data.artistes.connect) { artistesIds = data.artistes.connect.map(a => a.id)
artistesIds.push(artiste.id)
if (data.titre && !data.forceSlug) {
const artiste = await jwennAwtisEpiId(artistesIds)
data.slug = getSlug(artiste, data.titre)
} }
} else {
artistesIds = data.artistes
}
if (data.titre && !data.forceSlug) { const getSlugExistance = await isSlugExists(data.slug)
const artiste = await jwennAwtisEpiId(artistesIds)
data.slug = getSlug(artiste, data.titre)
}
const getSlugExistance = await isSlugExists(data.slug) if (getSlugExistance) {
throw new ApplicationError('Un morceau du même artiste existe déjà.')
if (getSlugExistance) { }
throw new ApplicationError('Un morceau du même artiste existe déjà.')
} }
}, },
beforeUpdate: async event => { beforeUpdate: async event => {
const {state} = event const {state} = event
let {data} = event.params let {data} = event.params
const {where} = event.params const {documentId} = data
const {id} = where
const previousParoles = await strapi.db.query('api::parole.parole').findOne({ const previousParoles = await strapi.db.query('api::parole.parole').findOne({
where: {id}, where: {documentId},
populate: {difference: true, artistes: true} populate: {difference: true, artistes: true}
}) })
@@ -162,25 +155,26 @@ module.exports = {
state.diff = difference state.diff = difference
} }
if(!data.publishedAt && data.titre && data.transcription) { if(!data.publishedAt && data.titre && data.transcription) {
strapi.service('api::parole.parole').validateParoles(data.titre, data.transcription) strapi.service('api::parole.parole').validateParoles(data.titre, data.transcription)
if (data.titre && !data.forceSlug) { if (data.titre && !data.forceSlug) {
let artistes let artistes
if (data.artistes.connect.length === 0) { if (data.artistes.connect.length === 0) {
artistes = previousParoles.artistes.map(a => a.alias).join('-') artistes = previousParoles.artistes.map(a => a.alias).join('-')
} else { } else {
artistes = await jwennAwtisEpiId(data.artistes.connect) let artistesIds = []
artistesIds = data.artistes.connect.map(a => a.id)
artistes = await jwennAwtisEpiId(artistesIds)
} }
data.slug = getSlug(artistes, data.titre) data.slug = getSlug(artistes, data.titre)
} }
} }
if (data.publishedAt != null) { if (data.publishedAt != null) {
const {id} = where
const previousData = await strapi.db.query('api::parole.parole').findOne({ const previousData = await strapi.db.query('api::parole.parole').findOne({
where: {id}, where: {documentId}
populate: {userAdmin: true, user: true}
}) })
const previousPublishedAt = previousData.publishedAt const previousPublishedAt = previousData.publishedAt
@@ -239,7 +233,7 @@ module.exports = {
} }
}, },
afterUpdate: async event => { afterUpdate: async event => {
const {result, state} = event const {result, state} = event
if (state.diff) { if (state.diff) {
await strapi.entityService.update('api::parole.parole', result.id, { await strapi.entityService.update('api::parole.parole', result.id, {
+7 -7
View File
@@ -3,12 +3,12 @@
const { createCoreController } = require('@strapi/strapi').factories; const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::parole.parole', ({strapi}) => ({ module.exports = createCoreController('api::parole.parole', ({strapi}) => ({
async findOne(ctx) { async findOne(documentId) {
const {id} = ctx.params
const parole = await strapi.documents('api::parole.parole').findOne({ const parole = await strapi.documents('api::parole.parole').findOne({
documentId: "__TODO__", documentId,
populate: ['artistes'] populate: ['artistes']
}) })
return parole return parole
}, },
async update(ctx) { async update(ctx) {
@@ -16,7 +16,7 @@ module.exports = createCoreController('api::parole.parole', ({strapi}) => ({
const {data} = body const {data} = body
const updatedParole = await strapi.documents('api::parole.parole').update({ const updatedParole = await strapi.documents('api::parole.parole').update({
documentId: "__TODO__", documentId: data.documentId,
data: { data: {
...data ...data
@@ -45,7 +45,7 @@ module.exports = createCoreController('api::parole.parole', ({strapi}) => ({
} }
const user = await strapi.documents('plugin::users-permissions.user').findOne({ const user = await strapi.documents('plugin::users-permissions.user').findOne({
documentId: "__TODO__" documentId: body.data.user.documentId
}) })
if (!user) { if (!user) {
@@ -57,7 +57,7 @@ module.exports = createCoreController('api::parole.parole', ({strapi}) => ({
} }
const artiste = await strapi.documents('api::artiste.artiste').findOne({ const artiste = await strapi.documents('api::artiste.artiste').findOne({
documentId: "__TODO__" documentId: data.artistes[0].documentId
}) })
if (!artiste) { if (!artiste) {
@@ -94,7 +94,7 @@ module.exports = createCoreController('api::parole.parole', ({strapi}) => ({
parolesIds.push(newParole.id) parolesIds.push(newParole.id)
await strapi.documents('plugin::users-permissions.user').update({ await strapi.documents('plugin::users-permissions.user').update({
documentId: "__TODO__", documentId: user.documentId,
data: { data: {
paroles: parolesIds paroles: parolesIds
+8 -3
View File
@@ -21,15 +21,20 @@ class Translator {
target_lang: target, target_lang: target,
text text
} }
const result = await axios.post(this.urlRequest, qs.stringify(data), { const result = await axios.post(this.urlRequest, {
text: Array.isArray(text) ? text : [text],
source_lang: origin,
target_lang: target,
}, {
headers: { headers: {
'content-type': 'application/x-www-form-urlencoded' Authorization: `DeepL-Auth-Key ${this.deeplKey}`,
'Content-Type': 'application/json'
} }
}) })
return result.data return result.data
} catch (error) { } catch (error) {
console.log('error', error) console.error('DeepL error:', error?.response?.data || error);
} }
} }
} }
+163 -163
View File
@@ -2366,10 +2366,10 @@
resolved "https://registry.yarnpkg.com/@standard-schema/spec/-/spec-1.1.0.tgz#a79b55dbaf8604812f52d140b2c9ab41bc150bb8" resolved "https://registry.yarnpkg.com/@standard-schema/spec/-/spec-1.1.0.tgz#a79b55dbaf8604812f52d140b2c9ab41bc150bb8"
integrity sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w== integrity sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==
"@strapi/admin@5.42.1": "@strapi/admin@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/admin/-/admin-5.42.1.tgz#74750a69d10a9cd69847ca6daec193e66bd2f756" resolved "https://registry.yarnpkg.com/@strapi/admin/-/admin-5.43.0.tgz#67d39de2b485116c894542cb73b9b49f1203129c"
integrity sha512-HGWwgGcMwlE/m7Xor3P2UOpSuM6+q7OJuzNNg5z4CrKdis3efWOiK/XAJvJF8MI6gXXiBBfrN7EmUXxQqJsJAw== integrity sha512-zN2m1l1OALBkfdho+bECuEGREhTVQ+GT08wxQ8Sy6Vrxvp9DbHTtd6oL9dih4GZzbCWYbbPhrXW6HyJfFIADXg==
dependencies: dependencies:
"@casl/ability" "6.7.5" "@casl/ability" "6.7.5"
"@internationalized/date" "3.5.4" "@internationalized/date" "3.5.4"
@@ -2378,14 +2378,14 @@
"@reduxjs/toolkit" "1.9.7" "@reduxjs/toolkit" "1.9.7"
"@strapi/design-system" "2.2.0" "@strapi/design-system" "2.2.0"
"@strapi/icons" "2.2.0" "@strapi/icons" "2.2.0"
"@strapi/permissions" "5.42.1" "@strapi/permissions" "5.43.0"
"@strapi/types" "5.42.1" "@strapi/types" "5.43.0"
"@strapi/typescript-utils" "5.42.1" "@strapi/typescript-utils" "5.43.0"
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
"@testing-library/dom" "10.4.1" "@testing-library/dom" "10.4.1"
"@testing-library/react" "16.3.0" "@testing-library/react" "16.3.0"
"@testing-library/user-event" "14.6.1" "@testing-library/user-event" "14.6.1"
axios "1.15.0" axios "1.15.1"
bcryptjs "2.4.3" bcryptjs "2.4.3"
boxen "5.1.2" boxen "5.1.2"
chalk "^4.1.2" chalk "^4.1.2"
@@ -2436,13 +2436,13 @@
yup "0.32.9" yup "0.32.9"
zod "3.25.67" zod "3.25.67"
"@strapi/cloud-cli@5.42.1": "@strapi/cloud-cli@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/cloud-cli/-/cloud-cli-5.42.1.tgz#d63e53a39d00b412590675d1b17c75e73d335434" resolved "https://registry.yarnpkg.com/@strapi/cloud-cli/-/cloud-cli-5.43.0.tgz#e09ca315beccb11d1d1bda36eea6392ab6e81379"
integrity sha512-ai6neQLpqCTwffnFgvwpsQmG2kqm/PnUnmeJ23DaE59BxuYjz5Jq/NsavFqroA5HgmZf048GAbJ2OzAwxdSxXA== integrity sha512-FW8HwN6BwiKN/Q2KVjdTTNtsdF/goDYp7tHWzOTbXfANBY4htViUYB5JMwKW8GlNcTb9NKlgSVE+XQCPXQOfng==
dependencies: dependencies:
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
axios "1.15.0" axios "1.15.1"
boxen "5.1.2" boxen "5.1.2"
chalk "4.1.2" chalk "4.1.2"
cli-progress "3.12.0" cli-progress "3.12.0"
@@ -2462,10 +2462,10 @@
xdg-app-paths "8.3.0" xdg-app-paths "8.3.0"
yup "0.32.9" yup "0.32.9"
"@strapi/content-manager@5.42.1": "@strapi/content-manager@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/content-manager/-/content-manager-5.42.1.tgz#44649ace80d2552afc38339ee12c620ce5a7c83f" resolved "https://registry.yarnpkg.com/@strapi/content-manager/-/content-manager-5.43.0.tgz#6035b7941659e3d0fe8de0da796f2d262c2e17bf"
integrity sha512-B6i5+8MShS0FVKI8YQG8PwaYgOvIwKM4xwgbYck4RspZkGadGGI6J7IQSw0E5WhPDRNlbxnM8fhBhcGphhTlgQ== integrity sha512-tnHe8m4VKyDiPhoWnocCHWRZ3Z0sI/PIUMR1peP1ehuOZrMWGbS6o0ELpEHz9vS7/90rLPtzC6Gqphux1ytTlg==
dependencies: dependencies:
"@dnd-kit/core" "6.3.1" "@dnd-kit/core" "6.3.1"
"@dnd-kit/sortable" "10.0.0" "@dnd-kit/sortable" "10.0.0"
@@ -2475,8 +2475,8 @@
"@sindresorhus/slugify" "1.1.0" "@sindresorhus/slugify" "1.1.0"
"@strapi/design-system" "2.2.0" "@strapi/design-system" "2.2.0"
"@strapi/icons" "2.2.0" "@strapi/icons" "2.2.0"
"@strapi/types" "5.42.1" "@strapi/types" "5.43.0"
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
codemirror5 "npm:codemirror@^5.65.11" codemirror5 "npm:codemirror@^5.65.11"
date-fns "2.30.0" date-fns "2.30.0"
fractional-indexing "3.2.0" fractional-indexing "3.2.0"
@@ -2509,17 +2509,17 @@
slate-react "0.98.3" slate-react "0.98.3"
yup "0.32.9" yup "0.32.9"
"@strapi/content-releases@5.42.1": "@strapi/content-releases@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/content-releases/-/content-releases-5.42.1.tgz#35b8098d17af44a4373560d5051b23dc518a6a48" resolved "https://registry.yarnpkg.com/@strapi/content-releases/-/content-releases-5.43.0.tgz#a9470c388b3cf1eaa16dd9de9d8f629f714244c4"
integrity sha512-r7JnJlNISTwLUTjktDCV5wYrlTtp24Zw5KrdS260u2x+Ec2XNaZbWiWtlq07NPtd+wiBhWMZVWGEBPhpNlg9Xw== integrity sha512-q947Bxsbh7zja4gzDIXGlWZ3utfh3AbFa05NsVPi7meQlusF15Jg0hDMUgmJcOBIAiLkpS5/rs2J3kc3XFlLhA==
dependencies: dependencies:
"@reduxjs/toolkit" "1.9.7" "@reduxjs/toolkit" "1.9.7"
"@strapi/database" "5.42.1" "@strapi/database" "5.43.0"
"@strapi/design-system" "2.2.0" "@strapi/design-system" "2.2.0"
"@strapi/icons" "2.2.0" "@strapi/icons" "2.2.0"
"@strapi/types" "5.42.1" "@strapi/types" "5.43.0"
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
date-fns "2.30.0" date-fns "2.30.0"
date-fns-tz "2.0.1" date-fns-tz "2.0.1"
formik "2.4.5" formik "2.4.5"
@@ -2529,10 +2529,10 @@
react-redux "8.1.3" react-redux "8.1.3"
yup "0.32.9" yup "0.32.9"
"@strapi/content-type-builder@5.42.1": "@strapi/content-type-builder@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/content-type-builder/-/content-type-builder-5.42.1.tgz#84e5e7a310475c337eb4b54af91a59785349a618" resolved "https://registry.yarnpkg.com/@strapi/content-type-builder/-/content-type-builder-5.43.0.tgz#ed5dca12c58c206b03b909bbee02963a0cb1b5ba"
integrity sha512-5z7qxTtcdG+UBXSQSRcW/odvzrwnqEm8zWw7UK+72s/zG2LcxVSyhM8FJ2U+16z4WcaIckxnZxfCtG82CxNTpA== integrity sha512-xJWP+ez3d6SJ02pssz6Jux8yKZ4n4+0u1YA1JqLoJagN/26UOsclOSQjDjJp6dLdU1yf0FP7WlyvqPRd/Qzm5g==
dependencies: dependencies:
"@ai-sdk/react" "2.0.120" "@ai-sdk/react" "2.0.120"
"@dnd-kit/core" "6.3.1" "@dnd-kit/core" "6.3.1"
@@ -2542,9 +2542,9 @@
"@reduxjs/toolkit" "1.9.7" "@reduxjs/toolkit" "1.9.7"
"@sindresorhus/slugify" "1.1.0" "@sindresorhus/slugify" "1.1.0"
"@strapi/design-system" "2.2.0" "@strapi/design-system" "2.2.0"
"@strapi/generators" "5.42.1" "@strapi/generators" "5.43.0"
"@strapi/icons" "2.2.0" "@strapi/icons" "2.2.0"
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
ai "5.0.52" ai "5.0.52"
date-fns "2.30.0" date-fns "2.30.0"
fs-extra "11.2.0" fs-extra "11.2.0"
@@ -2561,22 +2561,22 @@
yup "0.32.9" yup "0.32.9"
zod "3.25.67" zod "3.25.67"
"@strapi/core@5.42.1": "@strapi/core@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/core/-/core-5.42.1.tgz#bafa08985f103402fd8dced4f450d77327ea4a75" resolved "https://registry.yarnpkg.com/@strapi/core/-/core-5.43.0.tgz#a9077a16d0a0af43f6bdf174afb253d560f32873"
integrity sha512-6zHINbqc3eAQCfX27kicia5bIQm9fpe9P3SZzPENmuJSbN38o95ERLLQ1H4b6+XW2V8MLnIYbmV6W4cgxXtGqw== integrity sha512-b0DfzMVpa4Q8neY1p1n80c9PB9pHvd6mI/FdoWZEnA41yDfrASokqpIHbsKr0Qbg+k0wM11BUtpWuKtMRR4fhw==
dependencies: dependencies:
"@koa/cors" "5.0.0" "@koa/cors" "5.0.0"
"@koa/router" "12.0.2" "@koa/router" "12.0.2"
"@paralleldrive/cuid2" "2.2.2" "@paralleldrive/cuid2" "2.2.2"
"@strapi/admin" "5.42.1" "@strapi/admin" "5.43.0"
"@strapi/database" "5.42.1" "@strapi/database" "5.43.0"
"@strapi/generators" "5.42.1" "@strapi/generators" "5.43.0"
"@strapi/logger" "5.42.1" "@strapi/logger" "5.43.0"
"@strapi/permissions" "5.42.1" "@strapi/permissions" "5.43.0"
"@strapi/types" "5.42.1" "@strapi/types" "5.43.0"
"@strapi/typescript-utils" "5.42.1" "@strapi/typescript-utils" "5.43.0"
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
"@vercel/stega" "0.1.2" "@vercel/stega" "0.1.2"
bcryptjs "2.4.3" bcryptjs "2.4.3"
boxen "5.1.2" boxen "5.1.2"
@@ -2618,18 +2618,18 @@
semver "7.5.4" semver "7.5.4"
statuses "2.0.1" statuses "2.0.1"
typescript "5.4.4" typescript "5.4.4"
undici "6.24.1" undici "6.25.0"
yup "0.32.9" yup "0.32.9"
zod "3.25.67" zod "3.25.67"
"@strapi/data-transfer@5.42.1": "@strapi/data-transfer@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/data-transfer/-/data-transfer-5.42.1.tgz#84f737de334d852e45218c529d068000c1c87051" resolved "https://registry.yarnpkg.com/@strapi/data-transfer/-/data-transfer-5.43.0.tgz#3f24080443cd4fa2038ace94ea7d052a2df389fe"
integrity sha512-jCWQPkPZzOJyPkDQ2RzJzlmeRfgdyXJPqmP3YNohDCYR0C22C4wq8oxapwyrjU3LJBKWtsUb3NssIZI2IHSWFw== integrity sha512-FojrYadcsqo2UnlfewkOD5Gcnl+tqdRdNnFwiTHCWCSbLLh07a0rxPTjma91DtVWEUb+5bgzPl2lg9izhB53MQ==
dependencies: dependencies:
"@strapi/logger" "5.42.1" "@strapi/logger" "5.43.0"
"@strapi/types" "5.42.1" "@strapi/types" "5.43.0"
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
chalk "4.1.2" chalk "4.1.2"
cli-table3 "0.6.5" cli-table3 "0.6.5"
commander "8.3.0" commander "8.3.0"
@@ -2645,13 +2645,13 @@
tar-stream "2.2.0" tar-stream "2.2.0"
ws "8.17.1" ws "8.17.1"
"@strapi/database@5.42.1": "@strapi/database@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/database/-/database-5.42.1.tgz#ca007e88293e497659e2fcba8ef3d4f7010b8f83" resolved "https://registry.yarnpkg.com/@strapi/database/-/database-5.43.0.tgz#c66b2a137c8f2f807dc2e59989fd60c225ad39aa"
integrity sha512-hLZEmu5Ei0kp3GGkhyC3HVwzqvLKeEE4rTNuL+ohUZ69U3rE/BA2jK918RTrAaWcFkluyNm4ujCeZWXwCMH/Mg== integrity sha512-xLpWkp2tnmDt95fCXM03PtGtcs0XQALdR+/z6N1joevRCSuOk9B9F3RPiU6qDFCt+XEsUMQ8yTZ3T/AzUBcJ5g==
dependencies: dependencies:
"@paralleldrive/cuid2" "2.2.2" "@paralleldrive/cuid2" "2.2.2"
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
ajv "8.18.0" ajv "8.18.0"
date-fns "2.30.0" date-fns "2.30.0"
debug "4.3.4" debug "4.3.4"
@@ -2692,15 +2692,15 @@
lodash "4.17.23" lodash "4.17.23"
react-remove-scroll "2.5.10" react-remove-scroll "2.5.10"
"@strapi/email@5.42.1": "@strapi/email@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/email/-/email-5.42.1.tgz#046df7f862f7f4eff466430b9793afd4f238521d" resolved "https://registry.yarnpkg.com/@strapi/email/-/email-5.43.0.tgz#13f9bdfa04e213f43219e16b513dec7238fdc685"
integrity sha512-6wGiyKOFfVRPWQO51LNM8BEookDdeLlGluKshXXjXR/xYKDVMgwOhugP77Wbp0RVF36W2Q68hkZz4sCAZo2pDA== integrity sha512-bdu//zvzwwQi9MeqBQXXmQpvbRXTvr1JxApl2vjW3ivb2qFU4izRqxNXa40ckc+/HTqOJ2z4GTqKVcSLH00ZuA==
dependencies: dependencies:
"@strapi/design-system" "2.2.0" "@strapi/design-system" "2.2.0"
"@strapi/icons" "2.2.0" "@strapi/icons" "2.2.0"
"@strapi/provider-email-sendmail" "5.42.1" "@strapi/provider-email-sendmail" "5.43.0"
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
koa2-ratelimit "^1.1.3" koa2-ratelimit "^1.1.3"
lodash "4.18.1" lodash "4.18.1"
react-intl "6.6.2" react-intl "6.6.2"
@@ -2708,14 +2708,14 @@
yup "0.32.9" yup "0.32.9"
zod "3.25.67" zod "3.25.67"
"@strapi/generators@5.42.1": "@strapi/generators@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/generators/-/generators-5.42.1.tgz#a23fe2475732498b9de3070361181500325132d2" resolved "https://registry.yarnpkg.com/@strapi/generators/-/generators-5.43.0.tgz#ecd51f154fc9788c2ff162929c8a5400865ce125"
integrity sha512-xsmMqecnsB6PGlfTr8eX238xiDVS7MYjaRdR/L4du8l148Kmq4fYB4y82mysbMecqILBnudHVBciw3lguiDUzg== integrity sha512-1u0L07nRc05tSSo/WesqVjok2dHezs7R/C+RLWF4bsqMKMCtBmImDLwp0HR1a+ai2aR9TVTjdp6z+l3Mbz8H6A==
dependencies: dependencies:
"@sindresorhus/slugify" "1.1.0" "@sindresorhus/slugify" "1.1.0"
"@strapi/typescript-utils" "5.42.1" "@strapi/typescript-utils" "5.43.0"
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
chalk "4.1.2" chalk "4.1.2"
fs-extra "11.2.0" fs-extra "11.2.0"
handlebars "4.7.9" handlebars "4.7.9"
@@ -2724,15 +2724,15 @@
plop "4.0.5" plop "4.0.5"
pluralize "8.0.0" pluralize "8.0.0"
"@strapi/i18n@5.42.1": "@strapi/i18n@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/i18n/-/i18n-5.42.1.tgz#4643dc149b52a5ffe8f84a27dd0c95425d2b2857" resolved "https://registry.yarnpkg.com/@strapi/i18n/-/i18n-5.43.0.tgz#62a0342c84a3b82a53a7e6ecf924b6935ccedd4c"
integrity sha512-OTxaGfqwT3id75fhle0rotjTqM+1fq5xScUnwhAFuF8CSn041HgcfTzgvXGEMQSokOC9UrCNwSoxrTUFrGmn2A== integrity sha512-zIhkQNC2sjso4clWiA2NIpDoFxd70otboLeOJ6BpgkRLEjMn+VVT1rmBUHo8I6lnccmMUHU6MZaaXwK5RcsW7g==
dependencies: dependencies:
"@reduxjs/toolkit" "1.9.7" "@reduxjs/toolkit" "1.9.7"
"@strapi/design-system" "2.2.0" "@strapi/design-system" "2.2.0"
"@strapi/icons" "2.2.0" "@strapi/icons" "2.2.0"
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
lodash "4.18.1" lodash "4.18.1"
qs "6.15.0" qs "6.15.0"
react-intl "6.6.2" react-intl "6.6.2"
@@ -2745,42 +2745,42 @@
resolved "https://registry.yarnpkg.com/@strapi/icons/-/icons-2.2.0.tgz#fe574fb26c991665a9bfc900c49afdf23a479add" resolved "https://registry.yarnpkg.com/@strapi/icons/-/icons-2.2.0.tgz#fe574fb26c991665a9bfc900c49afdf23a479add"
integrity sha512-wVItrWIDYtvGpv1S5Lg580b5PXH2iw6dgcFnri5vVz4qZDP6ZOTpLmkwZybkfZcpIzq1KkjKyA1JZ6NLBE59cQ== integrity sha512-wVItrWIDYtvGpv1S5Lg580b5PXH2iw6dgcFnri5vVz4qZDP6ZOTpLmkwZybkfZcpIzq1KkjKyA1JZ6NLBE59cQ==
"@strapi/logger@5.42.1": "@strapi/logger@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/logger/-/logger-5.42.1.tgz#e9418f78f39ccbcc0d1eea187d93c701abb0a0b3" resolved "https://registry.yarnpkg.com/@strapi/logger/-/logger-5.43.0.tgz#b0015f9d94725a40693c01d16639b7a1d22e892c"
integrity sha512-/KtTIIThPGLG6/J+dAVWt2A6j/N0g9ZdyGrpPb+Igfubq+RrbvrRS7/gcxxO0CyMqqFy1tLV5S9mgZzXiowR5w== integrity sha512-DzbHCSU+38WlY11fTNYN81iMjeV1/4WAgXnEo/+QXcPmcc0rSGDqYwvp/+bg6W6QvZVzLVZduZR6k8DJfwP8oA==
dependencies: dependencies:
lodash "4.18.1" lodash "4.18.1"
winston "3.10.0" winston "3.10.0"
"@strapi/openapi@5.42.1": "@strapi/openapi@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/openapi/-/openapi-5.42.1.tgz#d9d7158079b3b8307aa0a651aa4d9690c4aee28e" resolved "https://registry.yarnpkg.com/@strapi/openapi/-/openapi-5.43.0.tgz#fd55b9035c611c1e7a1372963d6b87df82c71612"
integrity sha512-Sd5pCV6pHMxT9yXRkfOr4c/YRaWxdB33Vlpc5WplJhR5kF4kpgXdCJfxOMSYAi5JnsqpL49C1GoCfqsC2kAgxg== integrity sha512-9pqfViqvEbycq13JcquEWR/RRc1GJbt3O903Cw9NI/YukaKLmgSR/J1qqIRoem2tTP8L6/8r/8UxZwu2p+0PNQ==
dependencies: dependencies:
debug "4.3.4" debug "4.3.4"
openapi-types "12.1.3" openapi-types "12.1.3"
zod "3.25.67" zod "3.25.67"
"@strapi/permissions@5.42.1": "@strapi/permissions@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/permissions/-/permissions-5.42.1.tgz#dfa427877e98b67d344f52405bcbab7a91f516e4" resolved "https://registry.yarnpkg.com/@strapi/permissions/-/permissions-5.43.0.tgz#e4d9355c9797b7393ceaae874751702eb3799ca6"
integrity sha512-sim4qUq+amQ1/mZElhR2Pucrkc5UNT7SCnpo5gdWn/iAA1irmzmgmqjN+iliJO4l6PDhZk2+BsyJVgYjyg6Rrw== integrity sha512-B1tev0zQoyFiw1+7s6LN0RFKEAXkJMCz6QIpCGZo/MuUAMjpDvS5R7Ghh/0PuGmVjcDmM7q2DesdithSRwY78w==
dependencies: dependencies:
"@casl/ability" "6.7.5" "@casl/ability" "6.7.5"
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
lodash "4.18.1" lodash "4.18.1"
qs "6.15.0" qs "6.15.0"
sift "16.0.1" sift "16.0.1"
"@strapi/plugin-users-permissions@5.42.1": "@strapi/plugin-users-permissions@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/plugin-users-permissions/-/plugin-users-permissions-5.42.1.tgz#8c8aa3105d1ab6f90e7ac623702a1666fd72dcab" resolved "https://registry.yarnpkg.com/@strapi/plugin-users-permissions/-/plugin-users-permissions-5.43.0.tgz#a13baed6386c0ffd7b3aca61c7f17a0bf31aef6e"
integrity sha512-jXMPZD2df2x+eh3DH2C1/hVZOwvvWvsEQrP6abHVTUuFmbwFf92TRzmdGzKACongkJ2awpkbvqxL08wtu5Ig+A== integrity sha512-sQaplY4LkBD3ZlqoxE/D2ArqfYagEPhU253KtLBwVyQ39TpjI7QNlMx4FK1b8aqgC1t+4F3uhkHDW7BuzqmoiQ==
dependencies: dependencies:
"@strapi/design-system" "2.2.0" "@strapi/design-system" "2.2.0"
"@strapi/icons" "2.2.0" "@strapi/icons" "2.2.0"
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
bcryptjs "2.4.3" bcryptjs "2.4.3"
formik "2.4.5" formik "2.4.5"
grant "^5.4.8" grant "^5.4.8"
@@ -2807,31 +2807,31 @@
lodash "4.17.21" lodash "4.17.21"
nodemailer "6.9.1" nodemailer "6.9.1"
"@strapi/provider-email-sendmail@5.42.1": "@strapi/provider-email-sendmail@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/provider-email-sendmail/-/provider-email-sendmail-5.42.1.tgz#48e101f3f5a2f574b0d727ca04f55d71c1c11414" resolved "https://registry.yarnpkg.com/@strapi/provider-email-sendmail/-/provider-email-sendmail-5.43.0.tgz#634b21f4823e5d076f90d871f3f36e31d9c27931"
integrity sha512-Hi/Cd3YO0SWFwMsTZKa5x1qQfiQiJRkm6SD2QNAArqkKxs0sK+R6fsCnxNfLjH8iVNYpxFPtCpmeRXP8sLTJMw== integrity sha512-1KsJR+WWICDfjwWJTP+5QzxPsAO+SE0yzxJ7laOv0pCnSRsK376dmp6Xobn1Zqnh6z9Uag90yPVZanUnHXHMiA==
dependencies: dependencies:
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
sendmail "^1.6.1" sendmail "^1.6.1"
"@strapi/provider-upload-local@5.42.1": "@strapi/provider-upload-local@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/provider-upload-local/-/provider-upload-local-5.42.1.tgz#1eb14638184263f46252c1c501d0b5df7ab27e10" resolved "https://registry.yarnpkg.com/@strapi/provider-upload-local/-/provider-upload-local-5.43.0.tgz#34986947d690587edc6653b6b08284641f0bb195"
integrity sha512-uovz3V0YBf9iNsvvIo/morDHiooGbi/FDcjyKfV7087qiC1TILiHD+LwJF7JTTsy4lErEgY9iucF4+baVKRHfA== integrity sha512-wtAimqekDlIBTShF0Yjc+L132jJuQJHV2W92zpqD2ckJfVrBq9XVTf1DHosRQRF0iohz4wiIsSy6/URW3jBiUw==
dependencies: dependencies:
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
fs-extra "11.2.0" fs-extra "11.2.0"
"@strapi/review-workflows@5.42.1": "@strapi/review-workflows@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/review-workflows/-/review-workflows-5.42.1.tgz#862121f93100a829d2b8531a88b1372a0e4d70e2" resolved "https://registry.yarnpkg.com/@strapi/review-workflows/-/review-workflows-5.43.0.tgz#3cecf89b671713ea5b3589aba58785fc534f983a"
integrity sha512-bsbqCJsE1iU6VYgjnJrae9UmxMHxdBKyfWfO8mbHfSYunsXWpfUqzsP+IVwM4Ht4Nu5H56R9Ha+RGFtxGqKcMA== integrity sha512-hsLwugZH//46gzY74EInkVzlcbhv4Q9rje9YhQV8GoBMhA5yiZXfdXiflDUjxe9KweHwb/TwPykVGE8tO2/qYg==
dependencies: dependencies:
"@reduxjs/toolkit" "1.9.7" "@reduxjs/toolkit" "1.9.7"
"@strapi/design-system" "2.2.0" "@strapi/design-system" "2.2.0"
"@strapi/icons" "2.2.0" "@strapi/icons" "2.2.0"
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
fractional-indexing "3.2.0" fractional-indexing "3.2.0"
react-dnd "16.0.1" react-dnd "16.0.1"
react-dnd-html5-backend "16.0.1" react-dnd-html5-backend "16.0.1"
@@ -2840,31 +2840,31 @@
react-redux "8.1.3" react-redux "8.1.3"
yup "0.32.9" yup "0.32.9"
"@strapi/strapi@5.42.1": "@strapi/strapi@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/strapi/-/strapi-5.42.1.tgz#285bcd3bf5ddf1cd38436814e57551d0c35612ad" resolved "https://registry.yarnpkg.com/@strapi/strapi/-/strapi-5.43.0.tgz#7c33fac20eb955bc10a598e3ac8fff25fe243364"
integrity sha512-DRF+CgUH64SXJhYl7VJycedlLx/YH/85Cww+0lfbfvW9U8H5cjXtdStV8qvD9Rw3UHnpY1BhUH3fOR2Yb2mWAA== integrity sha512-vJLU9hOWcELgZmOOqHLRAfyc8AX4Jz58vvCoQApxCs6zFYhx50OPVD6BBeo1TS9Gp33yeRVclpqwHGxfeoWs5g==
dependencies: dependencies:
"@pmmmwh/react-refresh-webpack-plugin" "0.5.15" "@pmmmwh/react-refresh-webpack-plugin" "0.5.15"
"@strapi/admin" "5.42.1" "@strapi/admin" "5.43.0"
"@strapi/cloud-cli" "5.42.1" "@strapi/cloud-cli" "5.43.0"
"@strapi/content-manager" "5.42.1" "@strapi/content-manager" "5.43.0"
"@strapi/content-releases" "5.42.1" "@strapi/content-releases" "5.43.0"
"@strapi/content-type-builder" "5.42.1" "@strapi/content-type-builder" "5.43.0"
"@strapi/core" "5.42.1" "@strapi/core" "5.43.0"
"@strapi/data-transfer" "5.42.1" "@strapi/data-transfer" "5.43.0"
"@strapi/database" "5.42.1" "@strapi/database" "5.43.0"
"@strapi/email" "5.42.1" "@strapi/email" "5.43.0"
"@strapi/generators" "5.42.1" "@strapi/generators" "5.43.0"
"@strapi/i18n" "5.42.1" "@strapi/i18n" "5.43.0"
"@strapi/logger" "5.42.1" "@strapi/logger" "5.43.0"
"@strapi/openapi" "5.42.1" "@strapi/openapi" "5.43.0"
"@strapi/permissions" "5.42.1" "@strapi/permissions" "5.43.0"
"@strapi/review-workflows" "5.42.1" "@strapi/review-workflows" "5.43.0"
"@strapi/types" "5.42.1" "@strapi/types" "5.43.0"
"@strapi/typescript-utils" "5.42.1" "@strapi/typescript-utils" "5.43.0"
"@strapi/upload" "5.42.1" "@strapi/upload" "5.43.0"
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
"@types/nodemon" "1.19.6" "@types/nodemon" "1.19.6"
"@vitejs/plugin-react-swc" "3.6.0" "@vitejs/plugin-react-swc" "3.6.0"
boxen "5.1.2" boxen "5.1.2"
@@ -2908,18 +2908,18 @@
webpack-hot-middleware "2.26.1" webpack-hot-middleware "2.26.1"
yup "0.32.9" yup "0.32.9"
"@strapi/types@5.42.1": "@strapi/types@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/types/-/types-5.42.1.tgz#f1af85d20f143748b73fafa21b238f015b3d5327" resolved "https://registry.yarnpkg.com/@strapi/types/-/types-5.43.0.tgz#885820ef060650ed27418bd558d64c17c595d938"
integrity sha512-zt3yDIEK5kKDZ2FZeViL4hOS2x4OGQEvbq/7Uhk+/rK1d8PxSd6/0I1lRBnTEEbLsK1OYAmoIdtP7/MuJMiyxQ== integrity sha512-hDhnzOpsCk6dbgbOZG6faMmMdX8QFvvt4+qqfBUJzZivuCU/2cWRAV3TzCX/84Gz8FNeihxGZztB7Vco/ZkpTA==
dependencies: dependencies:
"@casl/ability" "6.7.5" "@casl/ability" "6.7.5"
"@koa/cors" "5.0.0" "@koa/cors" "5.0.0"
"@koa/router" "12.0.2" "@koa/router" "12.0.2"
"@strapi/database" "5.42.1" "@strapi/database" "5.43.0"
"@strapi/logger" "5.42.1" "@strapi/logger" "5.43.0"
"@strapi/permissions" "5.42.1" "@strapi/permissions" "5.43.0"
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
commander "8.3.0" commander "8.3.0"
json-logic-js "2.0.5" json-logic-js "2.0.5"
koa "2.16.4" koa "2.16.4"
@@ -2930,10 +2930,10 @@
typedoc-plugin-markdown "3.17.1" typedoc-plugin-markdown "3.17.1"
zod "3.25.67" zod "3.25.67"
"@strapi/typescript-utils@5.42.1": "@strapi/typescript-utils@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/typescript-utils/-/typescript-utils-5.42.1.tgz#d8efd0a46ab8eac704538cd3da5384d60c748682" resolved "https://registry.yarnpkg.com/@strapi/typescript-utils/-/typescript-utils-5.43.0.tgz#2e9ff1c39e862e7dfbb2e97ac07da25ee9b5e97d"
integrity sha512-tMCDILbJOH8VSXRPLBjZRj1c7aaAe15sc9sVfaWWe9krsoyNs4XsTJX2geH5Arf3c4wLijK7qkIq8BY6Fa0zTQ== integrity sha512-hPUyxPzpF7ho+hrD5o9UzPpJXbWCf7FDInIwHhM8eUvwsP/rMOsA9Yal3KezBX01FTErLaB8WCzQiDcfna7kGw==
dependencies: dependencies:
chalk "4.1.2" chalk "4.1.2"
cli-table3 "0.6.5" cli-table3 "0.6.5"
@@ -2969,20 +2969,20 @@
aria-hidden "1.2.4" aria-hidden "1.2.4"
react-remove-scroll "2.5.10" react-remove-scroll "2.5.10"
"@strapi/upload@5.42.1": "@strapi/upload@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/upload/-/upload-5.42.1.tgz#e5c93842916f6957dfcbb8858c2f8433865cc0b6" resolved "https://registry.yarnpkg.com/@strapi/upload/-/upload-5.43.0.tgz#27e7957aab2d94150e705901fffa43f961e6c353"
integrity sha512-25MIWBDJtpbTUKbAUP26V4B7+0hMis3Dq8O1OnS0p+M8Ka8fdMutVVSZD7ybBr4M6JsKfqOvqifeoVlIC8Dkkw== integrity sha512-bg+7T13h/DEnKqq4lBlZ9xMKQinwuKOY9Ab4QffftgFUx/JzuD6SObenjhZ+8Q9v1OcopmcBj37+5zCgeT88sA==
dependencies: dependencies:
"@mux/mux-player-react" "3.1.0" "@mux/mux-player-react" "3.1.0"
"@radix-ui/react-dialog" "1.0.5" "@radix-ui/react-dialog" "1.0.5"
"@radix-ui/react-toggle-group" "1.1.11" "@radix-ui/react-toggle-group" "1.1.11"
"@reduxjs/toolkit" "1.9.7" "@reduxjs/toolkit" "1.9.7"
"@strapi/database" "5.42.1" "@strapi/database" "5.43.0"
"@strapi/design-system" "2.2.0" "@strapi/design-system" "2.2.0"
"@strapi/icons" "2.2.0" "@strapi/icons" "2.2.0"
"@strapi/provider-upload-local" "5.42.1" "@strapi/provider-upload-local" "5.43.0"
"@strapi/utils" "5.42.1" "@strapi/utils" "5.43.0"
byte-size "8.1.1" byte-size "8.1.1"
cropperjs "1.6.1" cropperjs "1.6.1"
date-fns "2.30.0" date-fns "2.30.0"
@@ -3005,10 +3005,10 @@
yup "0.32.9" yup "0.32.9"
zod "3.25.67" zod "3.25.67"
"@strapi/utils@5.42.1": "@strapi/utils@5.43.0":
version "5.42.1" version "5.43.0"
resolved "https://registry.yarnpkg.com/@strapi/utils/-/utils-5.42.1.tgz#690dd43aae12fda20994e2df649eae82697c4800" resolved "https://registry.yarnpkg.com/@strapi/utils/-/utils-5.43.0.tgz#a0875a235c3b451e8fe6cbab75007f71940f5894"
integrity sha512-8B55UXo+vCkFVLVUrhlkqb/LpaYHdc2hzzlJHxxH9mza0eh5alzNo4ubfv3PbGCz2oUg+4YW22j2e+2wJlDMfQ== integrity sha512-WMMzqoqb90fqzEX1xpnsSWb5XzyIfZtrdj3MDcHMIJT8QoZa/ntsAiPak9JpeQpPRkGdH62zvbQYMhupvP91IA==
dependencies: dependencies:
"@sindresorhus/slugify" "1.1.0" "@sindresorhus/slugify" "1.1.0"
date-fns "2.30.0" date-fns "2.30.0"
@@ -4104,10 +4104,10 @@ attr-accept@^2.2.4:
resolved "https://registry.yarnpkg.com/attr-accept/-/attr-accept-2.2.5.tgz#d7061d958e6d4f97bf8665c68b75851a0713ab5e" resolved "https://registry.yarnpkg.com/attr-accept/-/attr-accept-2.2.5.tgz#d7061d958e6d4f97bf8665c68b75851a0713ab5e"
integrity sha512-0bDNnY/u6pPwHDMoF0FieU354oBi0a8rD9FcsLwzcGWbc8KS8KPIi7y+s13OlVY+gMWc/9xEMUgNE6Qm8ZllYQ== integrity sha512-0bDNnY/u6pPwHDMoF0FieU354oBi0a8rD9FcsLwzcGWbc8KS8KPIi7y+s13OlVY+gMWc/9xEMUgNE6Qm8ZllYQ==
axios@1.15.0: axios@1.15.1:
version "1.15.0" version "1.15.1"
resolved "https://registry.yarnpkg.com/axios/-/axios-1.15.0.tgz#0fcee91ef03d386514474904b27863b2c683bf4f" resolved "https://registry.yarnpkg.com/axios/-/axios-1.15.1.tgz#075420b785da8adbdf545785b69f90c926b28542"
integrity sha512-wWyJDlAatxk30ZJer+GeCWS209sA42X+N5jU2jy6oHTp7ufw8uzUTVFBX9+wTfAlhiJXGS0Bq7X6efruWjuK9Q== integrity sha512-WOG+Jj8ZOvR0a3rAn+Tuf1UQJRxw5venr6DgdbJzngJE3qG7X0kL83CZGpdHMxEm+ZK3seAbvFsw4FfOfP9vxg==
dependencies: dependencies:
follow-redirects "^1.15.11" follow-redirects "^1.15.11"
form-data "^4.0.5" form-data "^4.0.5"
@@ -10970,10 +10970,10 @@ undefsafe@^2.0.5:
resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.5.tgz#38733b9327bdcd226db889fb723a6efd162e6e2c" resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.5.tgz#38733b9327bdcd226db889fb723a6efd162e6e2c"
integrity sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA== integrity sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==
undici@6.24.1: undici@6.25.0:
version "6.24.1" version "6.25.0"
resolved "https://registry.yarnpkg.com/undici/-/undici-6.24.1.tgz#9df1425cede20b836d95634347946f79578b7e71" resolved "https://registry.yarnpkg.com/undici/-/undici-6.25.0.tgz#8c4efb8c998dc187fc1cfb5dde1ef19a211849fb"
integrity sha512-sC+b0tB1whOCzbtlx20fx3WgCXwkW627p4EA9uM+/tNNPkSS+eSEld6pAs9nDv7WbY1UUljBMYPtu9BCOrCWKA== integrity sha512-ZgpWDC5gmNiuY9CnLVXEH8rl50xhRCuLNA97fAUnKi8RRuV4E6KG31pDTsLVUKnohJE0I3XDrTeEydAXRw47xg==
unified@^11.0.0: unified@^11.0.0:
version "11.0.5" version "11.0.5"