content block for operation
This commit is contained in:
parent
693aa352a4
commit
7679f4f6c9
3 changed files with 8 additions and 1 deletions
|
@ -43,6 +43,9 @@
|
|||
"pluginOptions": {},
|
||||
"type": "datetime",
|
||||
"required": true
|
||||
},
|
||||
"content": {
|
||||
"type": "blocks"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
|
|
1
types/generated/contentTypes.d.ts
vendored
1
types/generated/contentTypes.d.ts
vendored
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue