chore: bump strapi version
This commit is contained in:
1892
package-lock.json
generated
1892
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -15,10 +15,10 @@
|
|||||||
"upgrade:dry": "npx @strapi/upgrade latest --dry"
|
"upgrade:dry": "npx @strapi/upgrade latest --dry"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@strapi/plugin-cloud": "^5.44.0",
|
"@strapi/plugin-cloud": "^5.45.1",
|
||||||
"@strapi/plugin-graphql": "^5.44.0",
|
"@strapi/plugin-graphql": "^5.45.1",
|
||||||
"@strapi/plugin-users-permissions": "^5.44.0",
|
"@strapi/plugin-users-permissions": "^5.45.1",
|
||||||
"@strapi/strapi": "^5.44.0",
|
"@strapi/strapi": "^5.45.1",
|
||||||
"pg": "^8.20.0",
|
"pg": "^8.20.0",
|
||||||
"react": "^18.0.0",
|
"react": "^18.0.0",
|
||||||
"react-dom": "^18.0.0",
|
"react-dom": "^18.0.0",
|
||||||
|
|||||||
12
types/generated/contentTypes.d.ts
vendored
12
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>;
|
||||||
|
|||||||
Reference in New Issue
Block a user