content block for operation

This commit is contained in:
Julian Krauser 2024-11-03 13:14:01 +01:00
parent 693aa352a4
commit 7679f4f6c9
3 changed files with 8 additions and 1 deletions

View file

@ -43,6 +43,9 @@
"pluginOptions": {}, "pluginOptions": {},
"type": "datetime", "type": "datetime",
"required": true "required": true
},
"content": {
"type": "blocks"
} }
} }
} }

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": "2024-11-03T09:14:30.561Z" "x-generation-date": "2024-11-03T11:11:26.368Z"
}, },
"x-strapi-config": { "x-strapi-config": {
"plugins": [ "plugins": [
@ -9108,6 +9108,7 @@
"type": "string", "type": "string",
"format": "date-time" "format": "date-time"
}, },
"content": {},
"locale": { "locale": {
"type": "string" "type": "string"
}, },
@ -9793,6 +9794,7 @@
"type": "string", "type": "string",
"format": "date-time" "format": "date-time"
}, },
"content": {},
"createdAt": { "createdAt": {
"type": "string", "type": "string",
"format": "date-time" "format": "date-time"
@ -9986,6 +9988,7 @@
"type": "string", "type": "string",
"format": "date-time" "format": "date-time"
}, },
"content": {},
"createdAt": { "createdAt": {
"type": "string", "type": "string",
"format": "date-time" "format": "date-time"

View file

@ -549,6 +549,7 @@ export interface ApiOperationOperation extends Struct.CollectionTypeSchema {
}; };
attributes: { attributes: {
attachment: Schema.Attribute.Media<'images' | 'files' | 'videos', true>; attachment: Schema.Attribute.Media<'images' | 'files' | 'videos', true>;
content: Schema.Attribute.Blocks;
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;