diff --git a/src/api/operation/content-types/operation/schema.json b/src/api/operation/content-types/operation/schema.json index b11c628..1aa2466 100644 --- a/src/api/operation/content-types/operation/schema.json +++ b/src/api/operation/content-types/operation/schema.json @@ -43,6 +43,9 @@ "pluginOptions": {}, "type": "datetime", "required": true + }, + "content": { + "type": "blocks" } } } diff --git a/src/extensions/documentation/documentation/1.0.0/full_documentation.json b/src/extensions/documentation/documentation/1.0.0/full_documentation.json index 183985c..453bd67 100644 --- a/src/extensions/documentation/documentation/1.0.0/full_documentation.json +++ b/src/extensions/documentation/documentation/1.0.0/full_documentation.json @@ -14,7 +14,7 @@ "name": "Apache 2.0", "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": { "plugins": [ @@ -9108,6 +9108,7 @@ "type": "string", "format": "date-time" }, + "content": {}, "locale": { "type": "string" }, @@ -9793,6 +9794,7 @@ "type": "string", "format": "date-time" }, + "content": {}, "createdAt": { "type": "string", "format": "date-time" @@ -9986,6 +9988,7 @@ "type": "string", "format": "date-time" }, + "content": {}, "createdAt": { "type": "string", "format": "date-time" diff --git a/types/generated/contentTypes.d.ts b/types/generated/contentTypes.d.ts index 04763b5..1b34dc6 100644 --- a/types/generated/contentTypes.d.ts +++ b/types/generated/contentTypes.d.ts @@ -549,6 +549,7 @@ export interface ApiOperationOperation extends Struct.CollectionTypeSchema { }; attributes: { attachment: Schema.Attribute.Media<'images' | 'files' | 'videos', true>; + content: Schema.Attribute.Blocks; createdAt: Schema.Attribute.DateTime; createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & Schema.Attribute.Private;