chore: Strapi eguneratzen du
This commit is contained in:
@@ -12,6 +12,7 @@ import customisations from "../../src/admin/app.js";
|
||||
|
||||
renderAdmin(document.getElementById("strapi"), {
|
||||
customisations,
|
||||
|
||||
plugins: {
|
||||
graphql: graphql,
|
||||
i18n: i18N,
|
||||
|
||||
Binary file not shown.
@@ -15,18 +15,19 @@
|
||||
"strapi": "strapi"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/plugin-graphql": "^4.15.5",
|
||||
"@strapi/plugin-i18n": "4.15.5",
|
||||
"@strapi/plugin-users-permissions": "4.15.5",
|
||||
"@strapi/provider-upload-cloudinary": "^4.15.5",
|
||||
"@strapi/strapi": "4.15.5",
|
||||
"@strapi/plugin-graphql": "^4.16.2",
|
||||
"@strapi/plugin-i18n": "^4.16.2",
|
||||
"@strapi/plugin-users-permissions": "^4.16.2",
|
||||
"@strapi/provider-upload-cloudinary": "^4.16.2",
|
||||
"@strapi/strapi": "^4.16.2",
|
||||
"pg": "^8.11.3",
|
||||
"pg-connection-string": "^2.6.2",
|
||||
"react": "^18.0.0",
|
||||
"react-dom": "^18.0.0",
|
||||
"react-router-dom": "^5.2.0",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-router-dom": "^5.3.4",
|
||||
"sqlite3": "5.1.6",
|
||||
"strapi-plugin-netlify-deployments": "^2.0.2"
|
||||
"strapi-plugin-netlify-deployments": "^2.0.2",
|
||||
"styled-components": "^5.3.11"
|
||||
},
|
||||
"strapi": {
|
||||
"uuid": "b0fa2552-2961-4886-8673-c2d7fe07b8a1"
|
||||
|
||||
93
back/types/generated/contentTypes.d.ts
vendored
93
back/types/generated/contentTypes.d.ts
vendored
@@ -482,6 +482,97 @@ 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;
|
||||
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 {
|
||||
collectionName: 'i18n_locale';
|
||||
info: {
|
||||
@@ -821,6 +912,8 @@ declare module '@strapi/types' {
|
||||
'admin::transfer-token-permission': AdminTransferTokenPermission;
|
||||
'plugin::upload.file': PluginUploadFile;
|
||||
'plugin::upload.folder': PluginUploadFolder;
|
||||
'plugin::content-releases.release': PluginContentReleasesRelease;
|
||||
'plugin::content-releases.release-action': PluginContentReleasesReleaseAction;
|
||||
'plugin::i18n.locale': PluginI18NLocale;
|
||||
'plugin::users-permissions.permission': PluginUsersPermissionsPermission;
|
||||
'plugin::users-permissions.role': PluginUsersPermissionsRole;
|
||||
|
||||
Reference in New Issue
Block a user