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

View file

@ -21,7 +21,7 @@
"react": "^18.0.0",
"react-dom": "^18.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"
},
"devDependencies": {

View file

@ -719,12 +719,12 @@ export interface PluginPublisherAction extends Struct.CollectionTypeSchema {
attributes: {
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<"oneToOne", "admin::user"> & Schema.Attribute.Private;
entityId: Schema.Attribute.String;
entitySlug: Schema.Attribute.String;
executeAt: Schema.Attribute.DateTime;
entityId: Schema.Attribute.String & Schema.Attribute.Required;
entitySlug: Schema.Attribute.String & Schema.Attribute.Required;
executeAt: Schema.Attribute.DateTime & Schema.Attribute.Required;
locale: Schema.Attribute.String & 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;
updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<"oneToOne", "admin::user"> & Schema.Attribute.Private;