Sensors: remove lastchange field

This commit is contained in:
He4eT 2025-04-05 01:21:14 +02:00
commit 6a46445342
16 changed files with 19 additions and 67 deletions

View file

@ -28,9 +28,6 @@
}, },
"description": { "description": {
"type": "text" "type": "text"
},
"lastchange": {
"type": "biginteger"
} }
} }
} }

View file

@ -4,7 +4,8 @@
"info": { "info": {
"singularName": "barometer-sensor", "singularName": "barometer-sensor",
"pluralName": "barometer-sensors", "pluralName": "barometer-sensors",
"displayName": "Sensor: Barometer" "displayName": "Sensor: Barometer",
"description": ""
}, },
"options": { "options": {
"draftAndPublish": false "draftAndPublish": false
@ -30,9 +31,6 @@
}, },
"description": { "description": {
"type": "text" "type": "text"
}, }
"lastchange": {
"type": "biginteger"
} }
} }
}

View file

@ -31,9 +31,6 @@
}, },
"description": { "description": {
"type": "text" "type": "text"
},
"lastchange": {
"type": "biginteger"
} }
} }
} }

View file

@ -4,7 +4,8 @@
"info": { "info": {
"singularName": "carbondioxide-sensor", "singularName": "carbondioxide-sensor",
"pluralName": "carbondioxide-sensors", "pluralName": "carbondioxide-sensors",
"displayName": "Sensor: CO2" "displayName": "Sensor: CO2",
"description": ""
}, },
"options": { "options": {
"draftAndPublish": false "draftAndPublish": false
@ -31,9 +32,6 @@
}, },
"description": { "description": {
"type": "text" "type": "text"
},
"lastchange": {
"type": "biginteger"
} }
} }
} }

View file

@ -4,7 +4,8 @@
"info": { "info": {
"singularName": "door-locked-sensor", "singularName": "door-locked-sensor",
"pluralName": "door-locked-sensors", "pluralName": "door-locked-sensors",
"displayName": "Sensor: Door Locked" "displayName": "Sensor: Door Locked",
"description": ""
}, },
"options": { "options": {
"draftAndPublish": false "draftAndPublish": false
@ -23,9 +24,6 @@
}, },
"description": { "description": {
"type": "text" "type": "text"
},
"lastchange": {
"type": "biginteger"
} }
} }
} }

View file

@ -31,9 +31,6 @@
}, },
"description": { "description": {
"type": "text" "type": "text"
},
"lastchange": {
"type": "biginteger"
} }
} }
} }

View file

@ -36,9 +36,6 @@
}, },
"description": { "description": {
"type": "text" "type": "text"
},
"lastchange": {
"type": "biginteger"
} }
} }
} }

View file

@ -25,9 +25,6 @@
}, },
"description": { "description": {
"type": "text" "type": "text"
},
"lastchange": {
"type": "biginteger"
} }
} }
} }

View file

@ -29,9 +29,6 @@
}, },
"description": { "description": {
"type": "text" "type": "text"
},
"lastchange": {
"type": "biginteger"
} }
} }
} }

View file

@ -4,7 +4,8 @@
"info": { "info": {
"singularName": "power-consumption-sensor", "singularName": "power-consumption-sensor",
"pluralName": "power-consumption-sensors", "pluralName": "power-consumption-sensors",
"displayName": "Sensor: Power Consumption" "displayName": "Sensor: Power Consumption",
"description": ""
}, },
"options": { "options": {
"draftAndPublish": false "draftAndPublish": false
@ -31,9 +32,6 @@
}, },
"description": { "description": {
"type": "text" "type": "text"
},
"lastchange": {
"type": "biginteger"
} }
} }
} }

View file

@ -4,7 +4,8 @@
"info": { "info": {
"singularName": "power-generation-sensor", "singularName": "power-generation-sensor",
"pluralName": "power-generation-sensors", "pluralName": "power-generation-sensors",
"displayName": "Sensor: Power Generation" "displayName": "Sensor: Power Generation",
"description": ""
}, },
"options": { "options": {
"draftAndPublish": false "draftAndPublish": false
@ -31,9 +32,6 @@
}, },
"description": { "description": {
"type": "text" "type": "text"
},
"lastchange": {
"type": "biginteger"
} }
} }
} }

View file

@ -4,7 +4,8 @@
"info": { "info": {
"singularName": "radiation-sensor", "singularName": "radiation-sensor",
"pluralName": "radiation-sensors", "pluralName": "radiation-sensors",
"displayName": "Sensor: Radiation" "displayName": "Sensor: Radiation",
"description": ""
}, },
"options": { "options": {
"draftAndPublish": false "draftAndPublish": false
@ -49,9 +50,6 @@
}, },
"description": { "description": {
"type": "text" "type": "text"
},
"lastchange": {
"type": "biginteger"
} }
} }
} }

View file

@ -38,9 +38,6 @@
}, },
"description": { "description": {
"type": "text" "type": "text"
},
"lastchange": {
"type": "biginteger"
} }
} }
} }

View file

@ -24,9 +24,6 @@
}, },
"description": { "description": {
"type": "text" "type": "text"
},
"lastchange": {
"type": "biginteger"
} }
} }
} }

View file

@ -21,9 +21,6 @@
"description": { "description": {
"type": "text" "type": "text"
}, },
"lastchange": {
"type": "biginteger"
},
"properties": { "properties": {
"displayName": "Properties", "displayName": "Properties",
"type": "component", "type": "component",

View file

@ -386,7 +386,6 @@ export interface ApiAccountBalanceSensorAccountBalanceSensor
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;
description: Schema.Attribute.Text; description: Schema.Attribute.Text;
lastchange: Schema.Attribute.BigInteger;
locale: Schema.Attribute.String & Schema.Attribute.Private; locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation< localizations: Schema.Attribute.Relation<
'oneToMany', 'oneToMany',
@ -408,6 +407,7 @@ export interface ApiBarometerSensorBarometerSensor
extends Struct.CollectionTypeSchema { extends Struct.CollectionTypeSchema {
collectionName: 'barometer_sensors'; collectionName: 'barometer_sensors';
info: { info: {
description: '';
displayName: 'Sensor: Barometer'; displayName: 'Sensor: Barometer';
pluralName: 'barometer-sensors'; pluralName: 'barometer-sensors';
singularName: 'barometer-sensor'; singularName: 'barometer-sensor';
@ -420,7 +420,6 @@ export interface ApiBarometerSensorBarometerSensor
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;
description: Schema.Attribute.Text; description: Schema.Attribute.Text;
lastchange: Schema.Attribute.BigInteger;
locale: Schema.Attribute.String & Schema.Attribute.Private; locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation< localizations: Schema.Attribute.Relation<
'oneToMany', 'oneToMany',
@ -455,7 +454,6 @@ export interface ApiBeverageSupplyBeverageSupply
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;
description: Schema.Attribute.Text; description: Schema.Attribute.Text;
lastchange: Schema.Attribute.BigInteger;
locale: Schema.Attribute.String & Schema.Attribute.Private; locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation< localizations: Schema.Attribute.Relation<
'oneToMany', 'oneToMany',
@ -478,6 +476,7 @@ export interface ApiCarbondioxideSensorCarbondioxideSensor
extends Struct.CollectionTypeSchema { extends Struct.CollectionTypeSchema {
collectionName: 'carbondioxide_sensors'; collectionName: 'carbondioxide_sensors';
info: { info: {
description: '';
displayName: 'Sensor: CO2'; displayName: 'Sensor: CO2';
pluralName: 'carbondioxide-sensors'; pluralName: 'carbondioxide-sensors';
singularName: 'carbondioxide-sensor'; singularName: 'carbondioxide-sensor';
@ -490,7 +489,6 @@ export interface ApiCarbondioxideSensorCarbondioxideSensor
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;
description: Schema.Attribute.Text; description: Schema.Attribute.Text;
lastchange: Schema.Attribute.BigInteger;
locale: Schema.Attribute.String & Schema.Attribute.Private; locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation< localizations: Schema.Attribute.Relation<
'oneToMany', 'oneToMany',
@ -513,6 +511,7 @@ export interface ApiDoorLockedSensorDoorLockedSensor
extends Struct.CollectionTypeSchema { extends Struct.CollectionTypeSchema {
collectionName: 'door_locked_sensors'; collectionName: 'door_locked_sensors';
info: { info: {
description: '';
displayName: 'Sensor: Door Locked'; displayName: 'Sensor: Door Locked';
pluralName: 'door-locked-sensors'; pluralName: 'door-locked-sensors';
singularName: 'door-locked-sensor'; singularName: 'door-locked-sensor';
@ -525,7 +524,6 @@ export interface ApiDoorLockedSensorDoorLockedSensor
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;
description: Schema.Attribute.Text; description: Schema.Attribute.Text;
lastchange: Schema.Attribute.BigInteger;
locale: Schema.Attribute.String & Schema.Attribute.Private; locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation< localizations: Schema.Attribute.Relation<
'oneToMany', 'oneToMany',
@ -628,7 +626,6 @@ export interface ApiHumiditySensorHumiditySensor
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;
description: Schema.Attribute.Text; description: Schema.Attribute.Text;
lastchange: Schema.Attribute.BigInteger;
locale: Schema.Attribute.String & Schema.Attribute.Private; locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation< localizations: Schema.Attribute.Relation<
'oneToMany', 'oneToMany',
@ -664,7 +661,6 @@ export interface ApiNetworkConnectionsSensorNetworkConnectionsSensor
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;
description: Schema.Attribute.Text; description: Schema.Attribute.Text;
lastchange: Schema.Attribute.BigInteger;
locale: Schema.Attribute.String & Schema.Attribute.Private; locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation< localizations: Schema.Attribute.Relation<
'oneToMany', 'oneToMany',
@ -700,7 +696,6 @@ export interface ApiNetworkTrafficSensorNetworkTrafficSensor
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;
description: Schema.Attribute.Text; description: Schema.Attribute.Text;
lastchange: Schema.Attribute.BigInteger;
locale: Schema.Attribute.String & Schema.Attribute.Private; locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation< localizations: Schema.Attribute.Relation<
'oneToMany', 'oneToMany',
@ -738,7 +733,6 @@ export interface ApiPeopleNowPresentSensorPeopleNowPresentSensor
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;
description: Schema.Attribute.Text; description: Schema.Attribute.Text;
lastchange: Schema.Attribute.BigInteger;
locale: Schema.Attribute.String & Schema.Attribute.Private; locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation< localizations: Schema.Attribute.Relation<
'oneToMany', 'oneToMany',
@ -760,6 +754,7 @@ export interface ApiPowerConsumptionSensorPowerConsumptionSensor
extends Struct.CollectionTypeSchema { extends Struct.CollectionTypeSchema {
collectionName: 'power_consumption_sensors'; collectionName: 'power_consumption_sensors';
info: { info: {
description: '';
displayName: 'Sensor: Power Consumption'; displayName: 'Sensor: Power Consumption';
pluralName: 'power-consumption-sensors'; pluralName: 'power-consumption-sensors';
singularName: 'power-consumption-sensor'; singularName: 'power-consumption-sensor';
@ -772,7 +767,6 @@ export interface ApiPowerConsumptionSensorPowerConsumptionSensor
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;
description: Schema.Attribute.Text; description: Schema.Attribute.Text;
lastchange: Schema.Attribute.BigInteger;
locale: Schema.Attribute.String & Schema.Attribute.Private; locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation< localizations: Schema.Attribute.Relation<
'oneToMany', 'oneToMany',
@ -794,6 +788,7 @@ export interface ApiPowerGenerationSensorPowerGenerationSensor
extends Struct.CollectionTypeSchema { extends Struct.CollectionTypeSchema {
collectionName: 'power_generation_sensors'; collectionName: 'power_generation_sensors';
info: { info: {
description: '';
displayName: 'Sensor: Power Generation'; displayName: 'Sensor: Power Generation';
pluralName: 'power-generation-sensors'; pluralName: 'power-generation-sensors';
singularName: 'power-generation-sensor'; singularName: 'power-generation-sensor';
@ -806,7 +801,6 @@ export interface ApiPowerGenerationSensorPowerGenerationSensor
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;
description: Schema.Attribute.Text; description: Schema.Attribute.Text;
lastchange: Schema.Attribute.BigInteger;
locale: Schema.Attribute.String & Schema.Attribute.Private; locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation< localizations: Schema.Attribute.Relation<
'oneToMany', 'oneToMany',
@ -828,6 +822,7 @@ export interface ApiRadiationSensorRadiationSensor
extends Struct.CollectionTypeSchema { extends Struct.CollectionTypeSchema {
collectionName: 'radiation_sensors'; collectionName: 'radiation_sensors';
info: { info: {
description: '';
displayName: 'Sensor: Radiation'; displayName: 'Sensor: Radiation';
pluralName: 'radiation-sensors'; pluralName: 'radiation-sensors';
singularName: 'radiation-sensor'; singularName: 'radiation-sensor';
@ -842,7 +837,6 @@ export interface ApiRadiationSensorRadiationSensor
Schema.Attribute.Private; Schema.Attribute.Private;
dead_time: Schema.Attribute.Decimal; dead_time: Schema.Attribute.Decimal;
description: Schema.Attribute.Text; description: Schema.Attribute.Text;
lastchange: Schema.Attribute.BigInteger;
locale: Schema.Attribute.String & Schema.Attribute.Private; locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation< localizations: Schema.Attribute.Relation<
'oneToMany', 'oneToMany',
@ -912,7 +906,6 @@ export interface ApiTemperatureSensorTemperatureSensor
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;
description: Schema.Attribute.Text; description: Schema.Attribute.Text;
lastchange: Schema.Attribute.BigInteger;
locale: Schema.Attribute.String & Schema.Attribute.Private; locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation< localizations: Schema.Attribute.Relation<
'oneToMany', 'oneToMany',
@ -959,7 +952,6 @@ export interface ApiTotalMemberCountSensorTotalMemberCountSensor
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;
description: Schema.Attribute.Text; description: Schema.Attribute.Text;
lastchange: Schema.Attribute.BigInteger;
locale: Schema.Attribute.String & Schema.Attribute.Private; locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation< localizations: Schema.Attribute.Relation<
'oneToMany', 'oneToMany',
@ -992,7 +984,6 @@ export interface ApiWindSensorWindSensor extends Struct.CollectionTypeSchema {
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;
description: Schema.Attribute.Text; description: Schema.Attribute.Text;
lastchange: Schema.Attribute.BigInteger;
locale: Schema.Attribute.String & Schema.Attribute.Private; locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation< localizations: Schema.Attribute.Relation<
'oneToMany', 'oneToMany',