change: update plugin publisher (beta-plugin)

This commit is contained in:
Julian Krauser 2025-04-06 14:15:46 +02:00
parent 0400cf6bed
commit e3b5d74293
3 changed files with 14 additions and 16 deletions

20
package-lock.json generated
View file

@ -18,7 +18,7 @@
"react": "^18.0.0", "react": "^18.0.0",
"react-dom": "^18.0.0", "react-dom": "^18.0.0",
"react-router-dom": "^6.0.0", "react-router-dom": "^6.0.0",
"strapi-plugin-publisher": "^2.0.0-beta.5", "strapi-plugin-publisher": "^2.0.0-beta.7",
"styled-components": "^6.0.0" "styled-components": "^6.0.0"
}, },
"devDependencies": { "devDependencies": {
@ -17959,16 +17959,15 @@
} }
}, },
"node_modules/strapi-plugin-publisher": { "node_modules/strapi-plugin-publisher": {
"version": "2.0.0-beta.5", "version": "2.0.0-beta.7",
"resolved": "https://registry.npmjs.org/strapi-plugin-publisher/-/strapi-plugin-publisher-2.0.0-beta.5.tgz", "resolved": "https://registry.npmjs.org/strapi-plugin-publisher/-/strapi-plugin-publisher-2.0.0-beta.7.tgz",
"integrity": "sha512-jmf9ziHPCiqZxSDhON+2RECn3vLaySNPaKI78OxVgfg9P03Wxr7yoLoGK0IXLwyAOGuwxkZojHOY4zF+nDPRog==", "integrity": "sha512-a7YueODKopmE/YF1c1U7Uh3pB3mtADltgKi5UsnxrpGDidwAqd3QqaNGEI47LCadXSKxbXSpD4P5+c1AlEC+1g==",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"lodash": "^4.17.21", "lodash": "^4.17.21",
"prop-types": "^15.8.1", "prop-types": "^15.8.1",
"react-intl": "^6.6.2", "react-intl": "^6.6.2",
"react-query": "^3.39.3", "react-query": "^3.39.3"
"yup": "^0.32.9"
}, },
"engines": { "engines": {
"node": ">=18.0.0 <=20.x.x", "node": ">=18.0.0 <=20.x.x",
@ -32226,15 +32225,14 @@
"integrity": "sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==" "integrity": "sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ=="
}, },
"strapi-plugin-publisher": { "strapi-plugin-publisher": {
"version": "2.0.0-beta.5", "version": "2.0.0-beta.7",
"resolved": "https://registry.npmjs.org/strapi-plugin-publisher/-/strapi-plugin-publisher-2.0.0-beta.5.tgz", "resolved": "https://registry.npmjs.org/strapi-plugin-publisher/-/strapi-plugin-publisher-2.0.0-beta.7.tgz",
"integrity": "sha512-jmf9ziHPCiqZxSDhON+2RECn3vLaySNPaKI78OxVgfg9P03Wxr7yoLoGK0IXLwyAOGuwxkZojHOY4zF+nDPRog==", "integrity": "sha512-a7YueODKopmE/YF1c1U7Uh3pB3mtADltgKi5UsnxrpGDidwAqd3QqaNGEI47LCadXSKxbXSpD4P5+c1AlEC+1g==",
"requires": { "requires": {
"lodash": "^4.17.21", "lodash": "^4.17.21",
"prop-types": "^15.8.1", "prop-types": "^15.8.1",
"react-intl": "^6.6.2", "react-intl": "^6.6.2",
"react-query": "^3.39.3", "react-query": "^3.39.3"
"yup": "^0.32.9"
} }
}, },
"stream-chain": { "stream-chain": {

View file

@ -21,7 +21,7 @@
"react": "^18.0.0", "react": "^18.0.0",
"react-dom": "^18.0.0", "react-dom": "^18.0.0",
"react-router-dom": "^6.0.0", "react-router-dom": "^6.0.0",
"strapi-plugin-publisher": "^2.0.0-beta.5", "strapi-plugin-publisher": "^2.0.0-beta.7",
"styled-components": "^6.0.0" "styled-components": "^6.0.0"
}, },
"devDependencies": { "devDependencies": {

View file

@ -719,12 +719,12 @@ export interface PluginPublisherAction extends Struct.CollectionTypeSchema {
attributes: { attributes: {
createdAt: Schema.Attribute.DateTime; createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<"oneToOne", "admin::user"> & Schema.Attribute.Private; createdBy: Schema.Attribute.Relation<"oneToOne", "admin::user"> & Schema.Attribute.Private;
entityId: Schema.Attribute.String; entityId: Schema.Attribute.String & Schema.Attribute.Required;
entitySlug: Schema.Attribute.String; entitySlug: Schema.Attribute.String & Schema.Attribute.Required;
executeAt: Schema.Attribute.DateTime; executeAt: Schema.Attribute.DateTime & Schema.Attribute.Required;
locale: Schema.Attribute.String & Schema.Attribute.Private; locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<"oneToMany", "plugin::publisher.action"> & Schema.Attribute.Private; localizations: Schema.Attribute.Relation<"oneToMany", "plugin::publisher.action"> & Schema.Attribute.Private;
mode: Schema.Attribute.String; mode: Schema.Attribute.String & Schema.Attribute.Required;
publishedAt: Schema.Attribute.DateTime; publishedAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime; updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<"oneToOne", "admin::user"> & Schema.Attribute.Private; updatedBy: Schema.Attribute.Relation<"oneToOne", "admin::user"> & Schema.Attribute.Private;