Merge pull request 'patches v1.3.2' (#9) from develop into main

Reviewed-on: #9
This commit is contained in:
Julian Krauser 2025-07-23 11:48:12 +00:00
commit d29433ee63
4 changed files with 3371 additions and 6640 deletions

9987
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -12,21 +12,21 @@
}, },
"dependencies": { "dependencies": {
"@offset-dev/strapi-calendar": "^1.0.0", "@offset-dev/strapi-calendar": "^1.0.0",
"@strapi/plugin-color-picker": "5.12.5", "@strapi/plugin-color-picker": "5.18.1",
"@strapi/plugin-documentation": "5.12.5", "@strapi/plugin-documentation": "5.18.1",
"@strapi/plugin-graphql": "5.12.5", "@strapi/plugin-graphql": "5.18.1",
"@strapi/plugin-users-permissions": "5.12.5", "@strapi/plugin-users-permissions": "5.18.1",
"@strapi/strapi": "5.12.5", "@strapi/strapi": "5.18.1",
"mysql2": "3.9.8", "mysql2": "^3.14.2",
"pg": "^8.14.1", "pg": "^8.16.3",
"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.7", "strapi-plugin-publisher": "^2.0.3",
"styled-components": "^6.0.0" "styled-components": "^6.0.0"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^20", "@types/node": "^24",
"@types/react": "^18", "@types/react": "^18",
"@types/react-dom": "^18", "@types/react-dom": "^18",
"typescript": "^5" "typescript": "^5"

View file

@ -14,7 +14,7 @@
"name": "Apache 2.0", "name": "Apache 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.html" "url": "https://www.apache.org/licenses/LICENSE-2.0.html"
}, },
"x-generation-date": "2025-04-21T11:28:46.349Z" "x-generation-date": "2025-07-23T08:59:59.486Z"
}, },
"x-strapi-config": { "x-strapi-config": {
"plugins": [ "plugins": [

View file

@ -33,6 +33,10 @@ export interface AdminApiToken extends Struct.CollectionTypeSchema {
minLength: 1; minLength: 1;
}> & }> &
Schema.Attribute.DefaultTo<"">; Schema.Attribute.DefaultTo<"">;
encryptedKey: Schema.Attribute.Text &
Schema.Attribute.SetMinMaxLength<{
minLength: 1;
}>;
expiresAt: Schema.Attribute.DateTime; expiresAt: Schema.Attribute.DateTime;
lastUsedAt: Schema.Attribute.DateTime; lastUsedAt: Schema.Attribute.DateTime;
lifespan: Schema.Attribute.BigInteger; lifespan: Schema.Attribute.BigInteger;