diff --git a/src/api/event/content-types/event/schema.json b/src/api/event/content-types/event/schema.json index 2776eb4..ea54aa4 100644 --- a/src/api/event/content-types/event/schema.json +++ b/src/api/event/content-types/event/schema.json @@ -4,7 +4,8 @@ "info": { "singularName": "event", "pluralName": "events", - "displayName": "Event" + "displayName": "Event", + "description": "" }, "options": { "draftAndPublish": false @@ -18,10 +19,6 @@ "type": "string", "required": true }, - "timestamp": { - "type": "biginteger", - "required": true - }, "extra": { "type": "text" } diff --git a/types/generated/contentTypes.d.ts b/types/generated/contentTypes.d.ts index ab1cd2c..b2ffe9c 100644 --- a/types/generated/contentTypes.d.ts +++ b/types/generated/contentTypes.d.ts @@ -547,6 +547,7 @@ export interface ApiDoorLockedSensorDoorLockedSensor export interface ApiEventEvent extends Struct.CollectionTypeSchema { collectionName: 'events'; info: { + description: ''; displayName: 'Event'; pluralName: 'events'; singularName: 'event'; @@ -564,7 +565,6 @@ export interface ApiEventEvent extends Struct.CollectionTypeSchema { Schema.Attribute.Private; name: Schema.Attribute.String & Schema.Attribute.Required; publishedAt: Schema.Attribute.DateTime; - timestamp: Schema.Attribute.BigInteger & Schema.Attribute.Required; type: Schema.Attribute.String & Schema.Attribute.Required; updatedAt: Schema.Attribute.DateTime; updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &