chore: Strapi bertsioa igotzen du. Kasu! Pnpm bertsioa igo da ere
This commit is contained in:
@@ -15,22 +15,22 @@
|
|||||||
"upgrade:dry": "pnpm dlx @strapi/upgrade latest --dry"
|
"upgrade:dry": "pnpm dlx @strapi/upgrade latest --dry"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@strapi/plugin-cloud": "5.40.0",
|
"@strapi/plugin-cloud": "5.47.0",
|
||||||
"@strapi/plugin-graphql": "5.40.0",
|
"@strapi/plugin-graphql": "5.47.0",
|
||||||
"@strapi/plugin-users-permissions": "5.40.0",
|
"@strapi/plugin-users-permissions": "5.47.0",
|
||||||
"@strapi/provider-upload-cloudinary": "5.40.0",
|
"@strapi/provider-upload-cloudinary": "5.47.0",
|
||||||
"@strapi/strapi": "5.40.0",
|
"@strapi/strapi": "5.47.0",
|
||||||
"better-sqlite3": "11.3.0",
|
"better-sqlite3": "11.3.0",
|
||||||
"react": "^18.3.1",
|
"react": "^18.3.1",
|
||||||
"react-dom": "^18.3.1",
|
"react-dom": "^18.3.1",
|
||||||
"react-router-dom": "^6.30.3",
|
"react-router-dom": "^6.30.3",
|
||||||
"strapi-plugin-icons-field": "^1.1.7",
|
"strapi-plugin-icons-field": "^1.2.4",
|
||||||
"strapi-plugin-webp-converter": "^1.0.4",
|
"strapi-plugin-webp-converter": "^1.0.4",
|
||||||
"styled-components": "^6.3.12"
|
"styled-components": "^6.4.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^20.19.37",
|
"@types/node": "^20.19.41",
|
||||||
"@types/react": "^18.3.28",
|
"@types/react": "^18.3.29",
|
||||||
"@types/react-dom": "^18.3.7",
|
"@types/react-dom": "^18.3.7",
|
||||||
"typescript": "^5.9.3"
|
"typescript": "^5.9.3"
|
||||||
},
|
},
|
||||||
|
|||||||
12
back/types/generated/contentTypes.d.ts
vendored
12
back/types/generated/contentTypes.d.ts
vendored
@@ -26,6 +26,11 @@ export interface AdminApiToken extends Struct.CollectionTypeSchema {
|
|||||||
Schema.Attribute.SetMinMaxLength<{
|
Schema.Attribute.SetMinMaxLength<{
|
||||||
minLength: 1;
|
minLength: 1;
|
||||||
}>;
|
}>;
|
||||||
|
adminPermissions: Schema.Attribute.Relation<
|
||||||
|
'oneToMany',
|
||||||
|
'admin::permission'
|
||||||
|
>;
|
||||||
|
adminUserOwner: Schema.Attribute.Relation<'manyToOne', 'admin::user'>;
|
||||||
createdAt: Schema.Attribute.DateTime;
|
createdAt: Schema.Attribute.DateTime;
|
||||||
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
||||||
Schema.Attribute.Private;
|
Schema.Attribute.Private;
|
||||||
@@ -39,6 +44,9 @@ export interface AdminApiToken extends Struct.CollectionTypeSchema {
|
|||||||
minLength: 1;
|
minLength: 1;
|
||||||
}>;
|
}>;
|
||||||
expiresAt: Schema.Attribute.DateTime;
|
expiresAt: Schema.Attribute.DateTime;
|
||||||
|
kind: Schema.Attribute.Enumeration<['content-api', 'admin']> &
|
||||||
|
Schema.Attribute.Required &
|
||||||
|
Schema.Attribute.DefaultTo<'content-api'>;
|
||||||
lastUsedAt: Schema.Attribute.DateTime;
|
lastUsedAt: Schema.Attribute.DateTime;
|
||||||
lifespan: Schema.Attribute.BigInteger;
|
lifespan: Schema.Attribute.BigInteger;
|
||||||
locale: Schema.Attribute.String & Schema.Attribute.Private;
|
locale: Schema.Attribute.String & Schema.Attribute.Private;
|
||||||
@@ -56,7 +64,6 @@ export interface AdminApiToken extends Struct.CollectionTypeSchema {
|
|||||||
>;
|
>;
|
||||||
publishedAt: Schema.Attribute.DateTime;
|
publishedAt: Schema.Attribute.DateTime;
|
||||||
type: Schema.Attribute.Enumeration<['read-only', 'full-access', 'custom']> &
|
type: Schema.Attribute.Enumeration<['read-only', 'full-access', 'custom']> &
|
||||||
Schema.Attribute.Required &
|
|
||||||
Schema.Attribute.DefaultTo<'read-only'>;
|
Schema.Attribute.DefaultTo<'read-only'>;
|
||||||
updatedAt: Schema.Attribute.DateTime;
|
updatedAt: Schema.Attribute.DateTime;
|
||||||
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
||||||
@@ -134,6 +141,7 @@ export interface AdminPermission extends Struct.CollectionTypeSchema {
|
|||||||
minLength: 1;
|
minLength: 1;
|
||||||
}>;
|
}>;
|
||||||
actionParameters: Schema.Attribute.JSON & Schema.Attribute.DefaultTo<{}>;
|
actionParameters: Schema.Attribute.JSON & Schema.Attribute.DefaultTo<{}>;
|
||||||
|
apiToken: Schema.Attribute.Relation<'manyToOne', 'admin::api-token'>;
|
||||||
conditions: Schema.Attribute.JSON & Schema.Attribute.DefaultTo<[]>;
|
conditions: Schema.Attribute.JSON & Schema.Attribute.DefaultTo<[]>;
|
||||||
createdAt: Schema.Attribute.DateTime;
|
createdAt: Schema.Attribute.DateTime;
|
||||||
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
||||||
@@ -385,6 +393,8 @@ export interface AdminUser extends Struct.CollectionTypeSchema {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
attributes: {
|
attributes: {
|
||||||
|
apiTokens: Schema.Attribute.Relation<'oneToMany', 'admin::api-token'> &
|
||||||
|
Schema.Attribute.Private;
|
||||||
blocked: Schema.Attribute.Boolean &
|
blocked: Schema.Attribute.Boolean &
|
||||||
Schema.Attribute.Private &
|
Schema.Attribute.Private &
|
||||||
Schema.Attribute.DefaultTo<false>;
|
Schema.Attribute.DefaultTo<false>;
|
||||||
|
|||||||
8046
pnpm-lock.yaml
generated
8046
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -3,6 +3,44 @@ packages:
|
|||||||
- e2e
|
- e2e
|
||||||
- front
|
- front
|
||||||
|
|
||||||
|
allowBuilds:
|
||||||
|
'@apollo/protobufjs': true
|
||||||
|
'@parcel/watcher': true
|
||||||
|
'@swc/core': true
|
||||||
|
better-sqlite3: true
|
||||||
|
core-js-pure: true
|
||||||
|
cypress: true
|
||||||
|
esbuild: true
|
||||||
|
sharp: true
|
||||||
|
|
||||||
|
minimumReleaseAgeExclude:
|
||||||
|
- '@strapi/admin@5.47.0'
|
||||||
|
- '@strapi/cloud-cli@5.47.0'
|
||||||
|
- '@strapi/content-manager@5.47.0'
|
||||||
|
- '@strapi/content-releases@5.47.0'
|
||||||
|
- '@strapi/content-type-builder@5.47.0'
|
||||||
|
- '@strapi/core@5.47.0'
|
||||||
|
- '@strapi/data-transfer@5.47.0'
|
||||||
|
- '@strapi/database@5.47.0'
|
||||||
|
- '@strapi/email@5.47.0'
|
||||||
|
- '@strapi/generators@5.47.0'
|
||||||
|
- '@strapi/i18n@5.47.0'
|
||||||
|
- '@strapi/logger@5.47.0'
|
||||||
|
- '@strapi/openapi@5.47.0'
|
||||||
|
- '@strapi/permissions@5.47.0'
|
||||||
|
- '@strapi/plugin-cloud@5.47.0'
|
||||||
|
- '@strapi/plugin-graphql@5.47.0'
|
||||||
|
- '@strapi/plugin-users-permissions@5.47.0'
|
||||||
|
- '@strapi/provider-email-sendmail@5.47.0'
|
||||||
|
- '@strapi/provider-upload-cloudinary@5.47.0'
|
||||||
|
- '@strapi/provider-upload-local@5.47.0'
|
||||||
|
- '@strapi/review-workflows@5.47.0'
|
||||||
|
- '@strapi/strapi@5.47.0'
|
||||||
|
- '@strapi/types@5.47.0'
|
||||||
|
- '@strapi/typescript-utils@5.47.0'
|
||||||
|
- '@strapi/upload@5.47.0'
|
||||||
|
- '@strapi/utils@5.47.0'
|
||||||
|
|
||||||
onlyBuiltDependencies:
|
onlyBuiltDependencies:
|
||||||
- '@swc/core'
|
- '@swc/core'
|
||||||
- better-sqlite3
|
- better-sqlite3
|
||||||
|
|||||||
Reference in New Issue
Block a user