Strapi v4.19.0
This commit is contained in:
+4
-4
@@ -11,10 +11,10 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@strapi/plugin-i18n": "4.17.1",
|
"@strapi/plugin-i18n": "4.19.0",
|
||||||
"@strapi/plugin-users-permissions": "4.17.1",
|
"@strapi/plugin-users-permissions": "4.19.0",
|
||||||
"@strapi/provider-email-nodemailer": "^4.17.1",
|
"@strapi/provider-email-nodemailer": "^4.19.0",
|
||||||
"@strapi/strapi": "4.17.1",
|
"@strapi/strapi": "4.19.0",
|
||||||
"better-sqlite3": "^8.4.0",
|
"better-sqlite3": "^8.4.0",
|
||||||
"diff": "^5.1.0",
|
"diff": "^5.1.0",
|
||||||
"react": "^18.0.0",
|
"react": "^18.0.0",
|
||||||
|
|||||||
Vendored
+114
-8
@@ -564,9 +564,12 @@ export interface PluginUploadFile extends Schema.CollectionType {
|
|||||||
folderPath: Attribute.String &
|
folderPath: Attribute.String &
|
||||||
Attribute.Required &
|
Attribute.Required &
|
||||||
Attribute.Private &
|
Attribute.Private &
|
||||||
Attribute.SetMinMax<{
|
Attribute.SetMinMax<
|
||||||
|
{
|
||||||
min: 1;
|
min: 1;
|
||||||
}>;
|
},
|
||||||
|
number
|
||||||
|
>;
|
||||||
createdAt: Attribute.DateTime;
|
createdAt: Attribute.DateTime;
|
||||||
updatedAt: Attribute.DateTime;
|
updatedAt: Attribute.DateTime;
|
||||||
createdBy: Attribute.Relation<
|
createdBy: Attribute.Relation<
|
||||||
@@ -602,9 +605,12 @@ export interface PluginUploadFolder extends Schema.CollectionType {
|
|||||||
attributes: {
|
attributes: {
|
||||||
name: Attribute.String &
|
name: Attribute.String &
|
||||||
Attribute.Required &
|
Attribute.Required &
|
||||||
Attribute.SetMinMax<{
|
Attribute.SetMinMax<
|
||||||
|
{
|
||||||
min: 1;
|
min: 1;
|
||||||
}>;
|
},
|
||||||
|
number
|
||||||
|
>;
|
||||||
pathId: Attribute.Integer & Attribute.Required & Attribute.Unique;
|
pathId: Attribute.Integer & Attribute.Required & Attribute.Unique;
|
||||||
parent: Attribute.Relation<
|
parent: Attribute.Relation<
|
||||||
'plugin::upload.folder',
|
'plugin::upload.folder',
|
||||||
@@ -623,9 +629,12 @@ export interface PluginUploadFolder extends Schema.CollectionType {
|
|||||||
>;
|
>;
|
||||||
path: Attribute.String &
|
path: Attribute.String &
|
||||||
Attribute.Required &
|
Attribute.Required &
|
||||||
Attribute.SetMinMax<{
|
Attribute.SetMinMax<
|
||||||
|
{
|
||||||
min: 1;
|
min: 1;
|
||||||
}>;
|
},
|
||||||
|
number
|
||||||
|
>;
|
||||||
createdAt: Attribute.DateTime;
|
createdAt: Attribute.DateTime;
|
||||||
updatedAt: Attribute.DateTime;
|
updatedAt: Attribute.DateTime;
|
||||||
createdBy: Attribute.Relation<
|
createdBy: Attribute.Relation<
|
||||||
@@ -643,6 +652,98 @@ export interface PluginUploadFolder extends Schema.CollectionType {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface PluginContentReleasesRelease extends Schema.CollectionType {
|
||||||
|
collectionName: 'strapi_releases';
|
||||||
|
info: {
|
||||||
|
singularName: 'release';
|
||||||
|
pluralName: 'releases';
|
||||||
|
displayName: 'Release';
|
||||||
|
};
|
||||||
|
options: {
|
||||||
|
draftAndPublish: false;
|
||||||
|
};
|
||||||
|
pluginOptions: {
|
||||||
|
'content-manager': {
|
||||||
|
visible: false;
|
||||||
|
};
|
||||||
|
'content-type-builder': {
|
||||||
|
visible: false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
attributes: {
|
||||||
|
name: Attribute.String & Attribute.Required;
|
||||||
|
releasedAt: Attribute.DateTime;
|
||||||
|
actions: Attribute.Relation<
|
||||||
|
'plugin::content-releases.release',
|
||||||
|
'oneToMany',
|
||||||
|
'plugin::content-releases.release-action'
|
||||||
|
>;
|
||||||
|
createdAt: Attribute.DateTime;
|
||||||
|
updatedAt: Attribute.DateTime;
|
||||||
|
createdBy: Attribute.Relation<
|
||||||
|
'plugin::content-releases.release',
|
||||||
|
'oneToOne',
|
||||||
|
'admin::user'
|
||||||
|
> &
|
||||||
|
Attribute.Private;
|
||||||
|
updatedBy: Attribute.Relation<
|
||||||
|
'plugin::content-releases.release',
|
||||||
|
'oneToOne',
|
||||||
|
'admin::user'
|
||||||
|
> &
|
||||||
|
Attribute.Private;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface PluginContentReleasesReleaseAction
|
||||||
|
extends Schema.CollectionType {
|
||||||
|
collectionName: 'strapi_release_actions';
|
||||||
|
info: {
|
||||||
|
singularName: 'release-action';
|
||||||
|
pluralName: 'release-actions';
|
||||||
|
displayName: 'Release Action';
|
||||||
|
};
|
||||||
|
options: {
|
||||||
|
draftAndPublish: false;
|
||||||
|
};
|
||||||
|
pluginOptions: {
|
||||||
|
'content-manager': {
|
||||||
|
visible: false;
|
||||||
|
};
|
||||||
|
'content-type-builder': {
|
||||||
|
visible: false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
attributes: {
|
||||||
|
type: Attribute.Enumeration<['publish', 'unpublish']> & Attribute.Required;
|
||||||
|
entry: Attribute.Relation<
|
||||||
|
'plugin::content-releases.release-action',
|
||||||
|
'morphToOne'
|
||||||
|
>;
|
||||||
|
contentType: Attribute.String & Attribute.Required;
|
||||||
|
locale: Attribute.String;
|
||||||
|
release: Attribute.Relation<
|
||||||
|
'plugin::content-releases.release-action',
|
||||||
|
'manyToOne',
|
||||||
|
'plugin::content-releases.release'
|
||||||
|
>;
|
||||||
|
createdAt: Attribute.DateTime;
|
||||||
|
updatedAt: Attribute.DateTime;
|
||||||
|
createdBy: Attribute.Relation<
|
||||||
|
'plugin::content-releases.release-action',
|
||||||
|
'oneToOne',
|
||||||
|
'admin::user'
|
||||||
|
> &
|
||||||
|
Attribute.Private;
|
||||||
|
updatedBy: Attribute.Relation<
|
||||||
|
'plugin::content-releases.release-action',
|
||||||
|
'oneToOne',
|
||||||
|
'admin::user'
|
||||||
|
> &
|
||||||
|
Attribute.Private;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
export interface PluginI18NLocale extends Schema.CollectionType {
|
export interface PluginI18NLocale extends Schema.CollectionType {
|
||||||
collectionName: 'i18n_locale';
|
collectionName: 'i18n_locale';
|
||||||
info: {
|
info: {
|
||||||
@@ -665,10 +766,13 @@ export interface PluginI18NLocale extends Schema.CollectionType {
|
|||||||
};
|
};
|
||||||
attributes: {
|
attributes: {
|
||||||
name: Attribute.String &
|
name: Attribute.String &
|
||||||
Attribute.SetMinMax<{
|
Attribute.SetMinMax<
|
||||||
|
{
|
||||||
min: 1;
|
min: 1;
|
||||||
max: 50;
|
max: 50;
|
||||||
}>;
|
},
|
||||||
|
number
|
||||||
|
>;
|
||||||
code: Attribute.String & Attribute.Unique;
|
code: Attribute.String & Attribute.Unique;
|
||||||
createdAt: Attribute.DateTime;
|
createdAt: Attribute.DateTime;
|
||||||
updatedAt: Attribute.DateTime;
|
updatedAt: Attribute.DateTime;
|
||||||
@@ -859,6 +963,8 @@ declare module '@strapi/types' {
|
|||||||
'api::parole.parole': ApiParoleParole;
|
'api::parole.parole': ApiParoleParole;
|
||||||
'plugin::upload.file': PluginUploadFile;
|
'plugin::upload.file': PluginUploadFile;
|
||||||
'plugin::upload.folder': PluginUploadFolder;
|
'plugin::upload.folder': PluginUploadFolder;
|
||||||
|
'plugin::content-releases.release': PluginContentReleasesRelease;
|
||||||
|
'plugin::content-releases.release-action': PluginContentReleasesReleaseAction;
|
||||||
'plugin::i18n.locale': PluginI18NLocale;
|
'plugin::i18n.locale': PluginI18NLocale;
|
||||||
'plugin::users-permissions.permission': PluginUsersPermissionsPermission;
|
'plugin::users-permissions.permission': PluginUsersPermissionsPermission;
|
||||||
'plugin::users-permissions.role': PluginUsersPermissionsRole;
|
'plugin::users-permissions.role': PluginUsersPermissionsRole;
|
||||||
|
|||||||
Reference in New Issue
Block a user