@golemio/energetics 1.0.13 → 1.0.14-dev.740182146
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/integration-engine/helpers/index.d.ts +0 -1
- package/dist/integration-engine/helpers/index.js +0 -1
- package/dist/integration-engine/helpers/index.js.map +1 -1
- package/dist/integration-engine/index.d.ts +3 -2
- package/dist/integration-engine/index.js +4 -2
- package/dist/integration-engine/index.js.map +1 -1
- package/dist/integration-engine/queueDefinitions.d.ts +3 -0
- package/dist/integration-engine/queueDefinitions.js +4 -11
- package/dist/integration-engine/queueDefinitions.js.map +1 -1
- package/dist/integration-engine/transformations/index.d.ts +0 -3
- package/dist/integration-engine/transformations/index.js +0 -3
- package/dist/integration-engine/transformations/index.js.map +1 -1
- package/dist/integration-engine/workers/index.d.ts +0 -1
- package/dist/integration-engine/workers/index.js +0 -1
- package/dist/integration-engine/workers/index.js.map +1 -1
- package/dist/integration-engine/workers/oict-energetika/OictEnergetikaWorker.d.ts +5 -0
- package/dist/integration-engine/workers/oict-energetika/OictEnergetikaWorker.js +21 -0
- package/dist/integration-engine/workers/oict-energetika/OictEnergetikaWorker.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/data-access/BuildingsRepository.d.ts +4 -0
- package/dist/integration-engine/workers/oict-energetika/data-access/BuildingsRepository.js +19 -0
- package/dist/integration-engine/workers/oict-energetika/data-access/BuildingsRepository.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/data-access/ConsumptionRepository.d.ts +6 -0
- package/dist/integration-engine/workers/oict-energetika/data-access/ConsumptionRepository.js +37 -0
- package/dist/integration-engine/workers/oict-energetika/data-access/ConsumptionRepository.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/data-access/DevicesRepository.d.ts +4 -0
- package/dist/integration-engine/workers/oict-energetika/data-access/DevicesRepository.js +19 -0
- package/dist/integration-engine/workers/oict-energetika/data-access/DevicesRepository.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/datasources/OictDataSourceFactory.d.ts +10 -0
- package/dist/integration-engine/workers/oict-energetika/datasources/OictDataSourceFactory.js +23 -0
- package/dist/integration-engine/workers/oict-energetika/datasources/OictDataSourceFactory.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/datasources/helpers/OictApiHelper.d.ts +12 -0
- package/dist/integration-engine/workers/oict-energetika/datasources/helpers/OictApiHelper.js +48 -0
- package/dist/integration-engine/workers/oict-energetika/datasources/helpers/OictApiHelper.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/datasources/helpers/index.d.ts +1 -0
- package/dist/integration-engine/workers/oict-energetika/datasources/helpers/index.js +18 -0
- package/dist/integration-engine/workers/oict-energetika/datasources/helpers/index.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/interfaces/IFetchDataInput.d.ts +3 -0
- package/dist/integration-engine/workers/oict-energetika/interfaces/IFetchDataInput.js +3 -0
- package/dist/integration-engine/workers/oict-energetika/interfaces/IFetchDataInput.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/schema/FetchDataSchema.d.ts +4 -0
- package/dist/integration-engine/workers/oict-energetika/schema/FetchDataSchema.js +22 -0
- package/dist/integration-engine/workers/oict-energetika/schema/FetchDataSchema.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchBuildingsTask.d.ts +9 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchBuildingsTask.js +44 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchBuildingsTask.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchConsumptionTask.d.ts +13 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchConsumptionTask.js +66 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchConsumptionTask.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchDataTask.d.ts +10 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchDataTask.js +32 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchDataTask.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchDevicesTask.d.ts +9 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchDevicesTask.js +44 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchDevicesTask.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/transformations/BuildingsTransformation.d.ts +7 -0
- package/dist/integration-engine/{transformations/EnesaEnergyBuildingsTransformation.js → workers/oict-energetika/transformations/BuildingsTransformation.js} +131 -133
- package/dist/integration-engine/workers/oict-energetika/transformations/BuildingsTransformation.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/transformations/ConsumptionTransformation.d.ts +7 -0
- package/dist/integration-engine/{transformations/EnesaEnergyConsumptionTransformation.js → workers/oict-energetika/transformations/ConsumptionTransformation.js} +12 -16
- package/dist/integration-engine/workers/oict-energetika/transformations/ConsumptionTransformation.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/transformations/DevicesTransformation.d.ts +7 -0
- package/dist/integration-engine/{transformations/EnesaEnergyDevicesTransformation.js → workers/oict-energetika/transformations/DevicesTransformation.js} +10 -12
- package/dist/integration-engine/workers/oict-energetika/transformations/DevicesTransformation.js.map +1 -0
- package/dist/schema-definitions/datasources/OictBuildingsJsonSchema.d.ts +3 -0
- package/dist/schema-definitions/datasources/OictBuildingsJsonSchema.js +356 -0
- package/dist/schema-definitions/datasources/OictBuildingsJsonSchema.js.map +1 -0
- package/dist/schema-definitions/datasources/OictConsumptionJsonSchema.d.ts +3 -0
- package/dist/schema-definitions/datasources/OictConsumptionJsonSchema.js +19 -0
- package/dist/schema-definitions/datasources/OictConsumptionJsonSchema.js.map +1 -0
- package/dist/schema-definitions/datasources/OictDevicesJsonSchema.d.ts +3 -0
- package/dist/schema-definitions/datasources/OictDevicesJsonSchema.js +42 -0
- package/dist/schema-definitions/datasources/OictDevicesJsonSchema.js.map +1 -0
- package/dist/schema-definitions/datasources/index.d.ts +3 -0
- package/dist/schema-definitions/datasources/index.js +20 -0
- package/dist/schema-definitions/datasources/index.js.map +1 -0
- package/dist/schema-definitions/datasources/interfaces/IOictBuildingsInput.d.ts +170 -0
- package/dist/schema-definitions/datasources/interfaces/IOictBuildingsInput.js +3 -0
- package/dist/schema-definitions/datasources/interfaces/IOictBuildingsInput.js.map +1 -0
- package/dist/schema-definitions/datasources/interfaces/IOictConsumptionInput.d.ts +8 -0
- package/dist/schema-definitions/datasources/interfaces/IOictConsumptionInput.js +3 -0
- package/dist/schema-definitions/datasources/interfaces/IOictConsumptionInput.js.map +1 -0
- package/dist/schema-definitions/datasources/interfaces/IOictDevicesInput.d.ts +16 -0
- package/dist/schema-definitions/datasources/interfaces/IOictDevicesInput.js +3 -0
- package/dist/schema-definitions/datasources/interfaces/IOictDevicesInput.js.map +1 -0
- package/dist/schema-definitions/datasources/interfaces/index.d.ts +3 -0
- package/dist/schema-definitions/datasources/interfaces/index.js +20 -0
- package/dist/schema-definitions/datasources/interfaces/index.js.map +1 -0
- package/dist/schema-definitions/index.d.ts +2 -6
- package/dist/schema-definitions/index.js +1 -6
- package/dist/schema-definitions/index.js.map +1 -1
- package/dist/schema-definitions/models/BuildingsModel.d.ts +131 -0
- package/dist/schema-definitions/models/BuildingsModel.js +393 -0
- package/dist/schema-definitions/models/BuildingsModel.js.map +1 -0
- package/dist/schema-definitions/models/ConsumptionModel.d.ts +14 -0
- package/dist/schema-definitions/models/ConsumptionModel.js +50 -0
- package/dist/schema-definitions/models/ConsumptionModel.js.map +1 -0
- package/dist/schema-definitions/models/DevicesModel.d.ts +22 -0
- package/dist/schema-definitions/models/DevicesModel.js +66 -0
- package/dist/schema-definitions/models/DevicesModel.js.map +1 -0
- package/dist/schema-definitions/models/index.d.ts +3 -0
- package/dist/schema-definitions/models/index.js +20 -0
- package/dist/schema-definitions/models/index.js.map +1 -0
- package/dist/schema-definitions/models/interfaces/IBuildingsModel.d.ts +125 -0
- package/dist/schema-definitions/models/interfaces/IBuildingsModel.js +3 -0
- package/dist/schema-definitions/models/interfaces/IBuildingsModel.js.map +1 -0
- package/dist/schema-definitions/models/interfaces/IConsumptionModel.d.ts +8 -0
- package/dist/schema-definitions/models/interfaces/IConsumptionModel.js +3 -0
- package/dist/schema-definitions/models/interfaces/IConsumptionModel.js.map +1 -0
- package/dist/schema-definitions/models/interfaces/IDevicesModel.d.ts +16 -0
- package/dist/schema-definitions/models/interfaces/IDevicesModel.js +3 -0
- package/dist/schema-definitions/models/interfaces/IDevicesModel.js.map +1 -0
- package/dist/schema-definitions/models/interfaces/index.d.ts +3 -0
- package/dist/schema-definitions/models/interfaces/index.js +20 -0
- package/dist/schema-definitions/models/interfaces/index.js.map +1 -0
- package/dist/schema-definitions/providers/index.d.ts +0 -1
- package/dist/schema-definitions/providers/index.js +0 -1
- package/dist/schema-definitions/providers/index.js.map +1 -1
- package/package.json +6 -6
- package/dist/integration-engine/helpers/EnesaApiHelper.d.ts +0 -17
- package/dist/integration-engine/helpers/EnesaApiHelper.js +0 -23
- package/dist/integration-engine/helpers/EnesaApiHelper.js.map +0 -1
- package/dist/integration-engine/transformations/EnesaEnergyBuildingsTransformation.d.ts +0 -8
- package/dist/integration-engine/transformations/EnesaEnergyBuildingsTransformation.js.map +0 -1
- package/dist/integration-engine/transformations/EnesaEnergyConsumptionTransformation.d.ts +0 -8
- package/dist/integration-engine/transformations/EnesaEnergyConsumptionTransformation.js.map +0 -1
- package/dist/integration-engine/transformations/EnesaEnergyDevicesTransformation.d.ts +0 -8
- package/dist/integration-engine/transformations/EnesaEnergyDevicesTransformation.js.map +0 -1
- package/dist/integration-engine/workers/EnergeticsEnesaWorker.d.ts +0 -27
- package/dist/integration-engine/workers/EnergeticsEnesaWorker.js +0 -142
- package/dist/integration-engine/workers/EnergeticsEnesaWorker.js.map +0 -1
- package/dist/schema-definitions/providers/EnergeticsEnesa.d.ts +0 -1087
- package/dist/schema-definitions/providers/EnergeticsEnesa.js +0 -35
- package/dist/schema-definitions/providers/EnergeticsEnesa.js.map +0 -1
- package/dist/schema-definitions/providers/EnergeticsEnesaDatasourceSchemas.d.ts +0 -592
- package/dist/schema-definitions/providers/EnergeticsEnesaDatasourceSchemas.js +0 -685
- package/dist/schema-definitions/providers/EnergeticsEnesaDatasourceSchemas.js.map +0 -1
- package/dist/schema-definitions/providers/EnergeticsEnesaOutputSchemas.d.ts +0 -463
- package/dist/schema-definitions/providers/EnergeticsEnesaOutputSchemas.js +0 -608
- package/dist/schema-definitions/providers/EnergeticsEnesaOutputSchemas.js.map +0 -1
- package/dist/schema-definitions/providers/EnergeticsEnesaSDMA.d.ts +0 -5
- package/dist/schema-definitions/providers/EnergeticsEnesaSDMA.js +0 -202
- package/dist/schema-definitions/providers/EnergeticsEnesaSDMA.js.map +0 -1
|
@@ -0,0 +1,393 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BuildingsModel = void 0;
|
|
4
|
+
const sequelize_1 = require("@golemio/core/dist/shared/sequelize");
|
|
5
|
+
class BuildingsModel extends sequelize_1.Model {
|
|
6
|
+
}
|
|
7
|
+
exports.BuildingsModel = BuildingsModel;
|
|
8
|
+
BuildingsModel.TABLE_NAME = "consumption_energy_buildings";
|
|
9
|
+
BuildingsModel.attributeModel = {
|
|
10
|
+
id: {
|
|
11
|
+
primaryKey: true,
|
|
12
|
+
type: sequelize_1.DataTypes.INTEGER,
|
|
13
|
+
},
|
|
14
|
+
building_name: sequelize_1.DataTypes.STRING(255),
|
|
15
|
+
description: sequelize_1.DataTypes.STRING(255),
|
|
16
|
+
building_address_code: sequelize_1.DataTypes.STRING(255),
|
|
17
|
+
building_label: sequelize_1.DataTypes.STRING(255),
|
|
18
|
+
current_note: sequelize_1.DataTypes.STRING(255),
|
|
19
|
+
main_use: sequelize_1.DataTypes.STRING(255),
|
|
20
|
+
secondary_use: sequelize_1.DataTypes.STRING(255),
|
|
21
|
+
year_of_construction: sequelize_1.DataTypes.STRING(255),
|
|
22
|
+
method_of_protection: sequelize_1.DataTypes.STRING(255),
|
|
23
|
+
built_up_area: sequelize_1.DataTypes.STRING(255),
|
|
24
|
+
heated_bulding_volume: sequelize_1.DataTypes.STRING(255),
|
|
25
|
+
students_count: sequelize_1.DataTypes.STRING(255),
|
|
26
|
+
employees_count: sequelize_1.DataTypes.STRING(255),
|
|
27
|
+
classrooms_count: sequelize_1.DataTypes.STRING(255),
|
|
28
|
+
beds_count: sequelize_1.DataTypes.STRING(255),
|
|
29
|
+
eno_id: sequelize_1.DataTypes.STRING(255),
|
|
30
|
+
csu_code: sequelize_1.DataTypes.STRING(255),
|
|
31
|
+
ku_code: sequelize_1.DataTypes.STRING(255),
|
|
32
|
+
allotment_number: sequelize_1.DataTypes.STRING(255),
|
|
33
|
+
registration_unit: sequelize_1.DataTypes.STRING(255),
|
|
34
|
+
gas_consumption_normatives: sequelize_1.DataTypes.STRING(255),
|
|
35
|
+
heat_consumption_normatives: sequelize_1.DataTypes.STRING(255),
|
|
36
|
+
water_consumption_normatives: sequelize_1.DataTypes.STRING(255),
|
|
37
|
+
electricity_consumption_normatives_per_person: sequelize_1.DataTypes.STRING(255),
|
|
38
|
+
electricity_consumption_normatives: sequelize_1.DataTypes.STRING(255),
|
|
39
|
+
energetic_management: sequelize_1.DataTypes.STRING(255),
|
|
40
|
+
opening_hours: sequelize_1.DataTypes.STRING(255),
|
|
41
|
+
weekend_opening_hours: sequelize_1.DataTypes.STRING(255),
|
|
42
|
+
latitude: sequelize_1.DataTypes.STRING(255),
|
|
43
|
+
longitude: sequelize_1.DataTypes.STRING(255),
|
|
44
|
+
address_street: sequelize_1.DataTypes.STRING(255),
|
|
45
|
+
address_house_number: sequelize_1.DataTypes.STRING(255),
|
|
46
|
+
address_city: sequelize_1.DataTypes.STRING(255),
|
|
47
|
+
address_country: sequelize_1.DataTypes.STRING(255),
|
|
48
|
+
address_mail: sequelize_1.DataTypes.STRING(255),
|
|
49
|
+
address_phone: sequelize_1.DataTypes.STRING(255),
|
|
50
|
+
address_web_address: sequelize_1.DataTypes.STRING(255),
|
|
51
|
+
penb_penbnumber: sequelize_1.DataTypes.STRING(255),
|
|
52
|
+
penb_issue_date: sequelize_1.DataTypes.STRING(255),
|
|
53
|
+
penb_total_building_envelope_area: sequelize_1.DataTypes.STRING(255),
|
|
54
|
+
penb_volume_factor_of_avshape: sequelize_1.DataTypes.STRING(255),
|
|
55
|
+
penb_total_energy_reference_area: sequelize_1.DataTypes.STRING(255),
|
|
56
|
+
penb_total_provided_energy: sequelize_1.DataTypes.STRING(255),
|
|
57
|
+
penb_total_provided_energy_category: sequelize_1.DataTypes.STRING(255),
|
|
58
|
+
penb_primary_non_renewable_energy: sequelize_1.DataTypes.STRING(255),
|
|
59
|
+
penb_primary_non_renewable_energy_category: sequelize_1.DataTypes.STRING(255),
|
|
60
|
+
penb_building_envelope: sequelize_1.DataTypes.STRING(255),
|
|
61
|
+
penb_building_envelope_category: sequelize_1.DataTypes.STRING(255),
|
|
62
|
+
penb_heating: sequelize_1.DataTypes.STRING(255),
|
|
63
|
+
penb_heating_category: sequelize_1.DataTypes.STRING(255),
|
|
64
|
+
penb_cooling: sequelize_1.DataTypes.STRING(255),
|
|
65
|
+
penb_cooling_category: sequelize_1.DataTypes.STRING(255),
|
|
66
|
+
penb_ventilation: sequelize_1.DataTypes.STRING(255),
|
|
67
|
+
penb_ventilation_category: sequelize_1.DataTypes.STRING(255),
|
|
68
|
+
penb_humidity_adjustment: sequelize_1.DataTypes.STRING(255),
|
|
69
|
+
penb_humidity_adjustment_category: sequelize_1.DataTypes.STRING(255),
|
|
70
|
+
penb_warm_water: sequelize_1.DataTypes.STRING(255),
|
|
71
|
+
penb_warm_water_category: sequelize_1.DataTypes.STRING(255),
|
|
72
|
+
penb_lighting: sequelize_1.DataTypes.STRING(255),
|
|
73
|
+
penb_lighting_category: sequelize_1.DataTypes.STRING(255),
|
|
74
|
+
energy_audits_energy_audit: sequelize_1.DataTypes.STRING(255),
|
|
75
|
+
energy_audits_earegistration_number: sequelize_1.DataTypes.STRING(255),
|
|
76
|
+
energy_audits_created_at: sequelize_1.DataTypes.STRING(255),
|
|
77
|
+
building_envelope_side_wall_prevailing_construction: sequelize_1.DataTypes.STRING(255),
|
|
78
|
+
building_envelope_side_wall_area: sequelize_1.DataTypes.STRING(255),
|
|
79
|
+
building_envelope_side_wall_heat_insulation: sequelize_1.DataTypes.STRING(255),
|
|
80
|
+
building_envelope_side_wall_year_of_adjustment: sequelize_1.DataTypes.STRING(255),
|
|
81
|
+
building_envelope_side_wall_technical_condition: sequelize_1.DataTypes.STRING(255),
|
|
82
|
+
building_envelope_filling_of_hole_construction: sequelize_1.DataTypes.STRING(255),
|
|
83
|
+
building_envelope_filling_of_hole_area: sequelize_1.DataTypes.STRING(255),
|
|
84
|
+
building_envelope_filling_of_hole_year_of_adjustment: sequelize_1.DataTypes.STRING(255),
|
|
85
|
+
building_envelope_filling_of_hole_technical_condition: sequelize_1.DataTypes.STRING(255),
|
|
86
|
+
building_envelope_roof_construction: sequelize_1.DataTypes.STRING(255),
|
|
87
|
+
building_envelope_roof_area: sequelize_1.DataTypes.STRING(255),
|
|
88
|
+
building_envelope_roof_thermal_insulation: sequelize_1.DataTypes.STRING(255),
|
|
89
|
+
building_envelope_roof_year_of_adjustment: sequelize_1.DataTypes.STRING(255),
|
|
90
|
+
building_envelope_roof_technical_condition: sequelize_1.DataTypes.STRING(255),
|
|
91
|
+
building_envelope_floor_of_the_lowest_heated_floor_construction: sequelize_1.DataTypes.STRING(255),
|
|
92
|
+
building_envelope_floor_of_the_lowest_heated_floor_area: sequelize_1.DataTypes.STRING(255),
|
|
93
|
+
floor_of_the_lowest_heated_floor_thermal_insulation: sequelize_1.DataTypes.STRING(255),
|
|
94
|
+
building_envelope_floor_of_the_lowest_heated_floor_year_of_adjustment: sequelize_1.DataTypes.STRING(255),
|
|
95
|
+
floor_of_the_lowest_heated_floor_technical_condition: sequelize_1.DataTypes.STRING(255),
|
|
96
|
+
fuel_and_energy_coal: sequelize_1.DataTypes.STRING(255),
|
|
97
|
+
fuel_and_energy_gas: sequelize_1.DataTypes.STRING(255),
|
|
98
|
+
fuel_and_energy_electricity: sequelize_1.DataTypes.STRING(255),
|
|
99
|
+
fuel_and_energy_czt: sequelize_1.DataTypes.STRING(255),
|
|
100
|
+
fuel_and_energy_oze: sequelize_1.DataTypes.STRING(255),
|
|
101
|
+
fuel_and_energy_other: sequelize_1.DataTypes.STRING(255),
|
|
102
|
+
technical_equipment_heating_main_source_of_heat: sequelize_1.DataTypes.STRING(255),
|
|
103
|
+
technical_equipment_heating_heat_percentage: sequelize_1.DataTypes.STRING(255),
|
|
104
|
+
technical_equipment_heating_secondary_source_of_heat: sequelize_1.DataTypes.STRING(255),
|
|
105
|
+
technical_equipment_heating_heating_system: sequelize_1.DataTypes.STRING(255),
|
|
106
|
+
technical_equipment_heating_year: sequelize_1.DataTypes.STRING(255),
|
|
107
|
+
technical_equipment_heating_technical_condition: sequelize_1.DataTypes.STRING(255),
|
|
108
|
+
technical_equipment_cooling_cooling_system: sequelize_1.DataTypes.STRING(255),
|
|
109
|
+
technical_equipment_cooling_cooling_area_percentage: sequelize_1.DataTypes.STRING(255),
|
|
110
|
+
technical_equipment_cooling_year: sequelize_1.DataTypes.STRING(255),
|
|
111
|
+
technical_equipment_cooling_technical_condition: sequelize_1.DataTypes.STRING(255),
|
|
112
|
+
technical_equipment_ventilation_ventilation: sequelize_1.DataTypes.STRING(255),
|
|
113
|
+
technical_equipment_ventilation_year: sequelize_1.DataTypes.STRING(255),
|
|
114
|
+
technical_equipment_ventilation_technical_condition: sequelize_1.DataTypes.STRING(255),
|
|
115
|
+
technical_equipment_humidity_adjustment_humidity_adjustment: sequelize_1.DataTypes.STRING(255),
|
|
116
|
+
technical_equipment_humidity_adjustment_year: sequelize_1.DataTypes.STRING(255),
|
|
117
|
+
technical_equipment_humidity_adjustment_technical_condition: sequelize_1.DataTypes.STRING(255),
|
|
118
|
+
technical_equipment_hot_water_predominant_way_of_heating_tv: sequelize_1.DataTypes.STRING(255),
|
|
119
|
+
technical_equipment_hot_water_hot_water_source: sequelize_1.DataTypes.STRING(255),
|
|
120
|
+
technical_equipment_hot_water_year: sequelize_1.DataTypes.STRING(255),
|
|
121
|
+
technical_equipment_hot_water_technical_condition: sequelize_1.DataTypes.STRING(255),
|
|
122
|
+
technical_equipment_lighting_lighting: sequelize_1.DataTypes.STRING(255),
|
|
123
|
+
technical_equipment_lighting_year: sequelize_1.DataTypes.STRING(255),
|
|
124
|
+
technical_equipment_lighting_technical_condition: sequelize_1.DataTypes.STRING(255),
|
|
125
|
+
technical_equipment_lighting_other_technological_elements: sequelize_1.DataTypes.STRING(255),
|
|
126
|
+
technical_equipment_lighting_measurement_method: sequelize_1.DataTypes.STRING(255),
|
|
127
|
+
oze_energy_production_solar_energy_photovoltaic: sequelize_1.DataTypes.STRING(255),
|
|
128
|
+
oze_energy_production_solar_energy_photothermal: sequelize_1.DataTypes.STRING(255),
|
|
129
|
+
oze_energy_production_integrated_turbines_wind_energy: sequelize_1.DataTypes.STRING(255),
|
|
130
|
+
oze_energy_production_heat_pump: sequelize_1.DataTypes.STRING(255),
|
|
131
|
+
waste_and_emissions_solid_waste_production: sequelize_1.DataTypes.STRING(255),
|
|
132
|
+
waste_and_emissions_tied_co2_emissions: sequelize_1.DataTypes.STRING(255),
|
|
133
|
+
waste_and_emissions_sox_emissions: sequelize_1.DataTypes.STRING(255),
|
|
134
|
+
waste_and_emissions_operating_co_2emissions: sequelize_1.DataTypes.STRING(255),
|
|
135
|
+
link: sequelize_1.DataTypes.STRING(255),
|
|
136
|
+
};
|
|
137
|
+
BuildingsModel.arrayJsonSchema = {
|
|
138
|
+
type: "array",
|
|
139
|
+
items: {
|
|
140
|
+
type: "object",
|
|
141
|
+
properties: {
|
|
142
|
+
id: { type: "integer" },
|
|
143
|
+
building_name: { type: "string" },
|
|
144
|
+
description: { type: "string" },
|
|
145
|
+
building_address_code: { type: "string" },
|
|
146
|
+
building_label: { type: "string" },
|
|
147
|
+
current_note: { type: "string" },
|
|
148
|
+
main_use: { type: "string" },
|
|
149
|
+
secondary_use: { type: "string" },
|
|
150
|
+
year_of_construction: { type: "string" },
|
|
151
|
+
method_of_protection: { type: "string" },
|
|
152
|
+
built_up_area: { type: "string" },
|
|
153
|
+
heated_bulding_volume: { type: "string" },
|
|
154
|
+
students_count: { type: "string" },
|
|
155
|
+
employees_count: { type: "string" },
|
|
156
|
+
classrooms_count: { type: "string" },
|
|
157
|
+
beds_count: { type: "string" },
|
|
158
|
+
eno_id: { type: "string" },
|
|
159
|
+
csu_code: { type: "string" },
|
|
160
|
+
ku_code: { type: "string" },
|
|
161
|
+
allotment_number: { type: "string" },
|
|
162
|
+
registration_unit: { type: "string" },
|
|
163
|
+
gas_consumption_normatives: { type: "string" },
|
|
164
|
+
heat_consumption_normatives: { type: "string" },
|
|
165
|
+
water_consumption_normatives: { type: "string" },
|
|
166
|
+
electricity_consumption_normatives_per_person: { type: "string" },
|
|
167
|
+
electricity_consumption_normatives: { type: "string" },
|
|
168
|
+
energetic_management: { type: "string" },
|
|
169
|
+
opening_hours: { type: "string" },
|
|
170
|
+
weekend_opening_hours: { type: "string" },
|
|
171
|
+
latitude: { type: "string" },
|
|
172
|
+
longitude: { type: "string" },
|
|
173
|
+
address_street: { type: "string" },
|
|
174
|
+
address_house_number: { type: "string" },
|
|
175
|
+
address_city: { type: "string" },
|
|
176
|
+
address_country: { type: "string" },
|
|
177
|
+
address_mail: { type: "string" },
|
|
178
|
+
address_phone: { type: "string" },
|
|
179
|
+
address_web_address: { type: "string" },
|
|
180
|
+
penb_penbnumber: { type: "string" },
|
|
181
|
+
penb_issue_date: { type: "string" },
|
|
182
|
+
penb_total_building_envelope_area: { type: "string" },
|
|
183
|
+
penb_volume_factor_of_avshape: { type: "string" },
|
|
184
|
+
penb_total_energy_reference_area: { type: "string" },
|
|
185
|
+
penb_total_provided_energy: { type: "string" },
|
|
186
|
+
penb_total_provided_energy_category: { type: "string" },
|
|
187
|
+
penb_primary_non_renewable_energy: { type: "string" },
|
|
188
|
+
penb_primary_non_renewable_energy_category: { type: "string" },
|
|
189
|
+
penb_building_envelope: { type: "string" },
|
|
190
|
+
penb_building_envelope_category: { type: "string" },
|
|
191
|
+
penb_heating: { type: "string" },
|
|
192
|
+
penb_heating_category: { type: "string" },
|
|
193
|
+
penb_cooling: { type: "string" },
|
|
194
|
+
penb_cooling_category: { type: "string" },
|
|
195
|
+
penb_ventilation: { type: "string" },
|
|
196
|
+
penb_ventilation_category: { type: "string" },
|
|
197
|
+
penb_humidity_adjustment: { type: "string" },
|
|
198
|
+
penb_humidity_adjustment_category: { type: "string" },
|
|
199
|
+
penb_warm_water: { type: "string" },
|
|
200
|
+
penb_warm_water_category: { type: "string" },
|
|
201
|
+
penb_lighting: { type: "string" },
|
|
202
|
+
penb_lighting_category: { type: "string" },
|
|
203
|
+
energy_audits_energy_audit: { type: "string" },
|
|
204
|
+
energy_audits_earegistration_number: { type: "string" },
|
|
205
|
+
energy_audits_created_at: { type: "string" },
|
|
206
|
+
building_envelope_side_wall_prevailing_construction: { type: "string" },
|
|
207
|
+
building_envelope_side_wall_area: { type: "string" },
|
|
208
|
+
building_envelope_side_wall_heat_insulation: { type: "string" },
|
|
209
|
+
building_envelope_side_wall_year_of_adjustment: { type: "string" },
|
|
210
|
+
building_envelope_side_wall_technical_condition: { type: "string" },
|
|
211
|
+
building_envelope_filling_of_hole_construction: { type: "string" },
|
|
212
|
+
building_envelope_filling_of_hole_area: { type: "string" },
|
|
213
|
+
building_envelope_filling_of_hole_year_of_adjustment: { type: "string" },
|
|
214
|
+
building_envelope_filling_of_hole_technical_condition: { type: "string" },
|
|
215
|
+
building_envelope_roof_construction: { type: "string" },
|
|
216
|
+
building_envelope_roof_area: { type: "string" },
|
|
217
|
+
building_envelope_roof_thermal_insulation: { type: "string" },
|
|
218
|
+
building_envelope_roof_year_of_adjustment: { type: "string" },
|
|
219
|
+
building_envelope_roof_technical_condition: { type: "string" },
|
|
220
|
+
building_envelope_floor_of_the_lowest_heated_floor_construction: { type: "string" },
|
|
221
|
+
building_envelope_floor_of_the_lowest_heated_floor_area: { type: "string" },
|
|
222
|
+
floor_of_the_lowest_heated_floor_thermal_insulation: { type: "string" },
|
|
223
|
+
building_envelope_floor_of_the_lowest_heated_floor_year_of_adjustment: { type: "string" },
|
|
224
|
+
floor_of_the_lowest_heated_floor_technical_condition: { type: "string" },
|
|
225
|
+
fuel_and_energy_coal: { type: "string" },
|
|
226
|
+
fuel_and_energy_gas: { type: "string" },
|
|
227
|
+
fuel_and_energy_electricity: { type: "string" },
|
|
228
|
+
fuel_and_energy_czt: { type: "string" },
|
|
229
|
+
fuel_and_energy_oze: { type: "string" },
|
|
230
|
+
fuel_and_energy_other: { type: "string" },
|
|
231
|
+
technical_equipment_heating_main_source_of_heat: { type: "string" },
|
|
232
|
+
technical_equipment_heating_heat_percentage: { type: "string" },
|
|
233
|
+
technical_equipment_heating_secondary_source_of_heat: { type: "string" },
|
|
234
|
+
technical_equipment_heating_heating_system: { type: "string" },
|
|
235
|
+
technical_equipment_heating_year: { type: "string" },
|
|
236
|
+
technical_equipment_heating_technical_condition: { type: "string" },
|
|
237
|
+
technical_equipment_cooling_cooling_system: { type: "string" },
|
|
238
|
+
technical_equipment_cooling_cooling_area_percentage: { type: "string" },
|
|
239
|
+
technical_equipment_cooling_year: { type: "string" },
|
|
240
|
+
technical_equipment_cooling_technical_condition: { type: "string" },
|
|
241
|
+
technical_equipment_ventilation_ventilation: { type: "string" },
|
|
242
|
+
technical_equipment_ventilation_year: { type: "string" },
|
|
243
|
+
technical_equipment_ventilation_technical_condition: { type: "string" },
|
|
244
|
+
technical_equipment_humidity_adjustment_humidity_adjustment: { type: "string" },
|
|
245
|
+
technical_equipment_humidity_adjustment_year: { type: "string" },
|
|
246
|
+
technical_equipment_humidity_adjustment_technical_condition: { type: "string" },
|
|
247
|
+
technical_equipment_hot_water_predominant_way_of_heating_tv: { type: "string" },
|
|
248
|
+
technical_equipment_hot_water_hot_water_source: { type: "string" },
|
|
249
|
+
technical_equipment_hot_water_year: { type: "string" },
|
|
250
|
+
technical_equipment_hot_water_technical_condition: { type: "string" },
|
|
251
|
+
technical_equipment_lighting_lighting: { type: "string" },
|
|
252
|
+
technical_equipment_lighting_year: { type: "string" },
|
|
253
|
+
technical_equipment_lighting_technical_condition: { type: "string" },
|
|
254
|
+
technical_equipment_lighting_other_technological_elements: { type: "string" },
|
|
255
|
+
technical_equipment_lighting_measurement_method: { type: "string" },
|
|
256
|
+
oze_energy_production_solar_energy_photovoltaic: { type: "string" },
|
|
257
|
+
oze_energy_production_solar_energy_photothermal: { type: "string" },
|
|
258
|
+
oze_energy_production_integrated_turbines_wind_energy: { type: "string" },
|
|
259
|
+
oze_energy_production_heat_pump: { type: "string" },
|
|
260
|
+
waste_and_emissions_solid_waste_production: { type: "string" },
|
|
261
|
+
waste_and_emissions_tied_co2_emissions: { type: "string" },
|
|
262
|
+
waste_and_emissions_sox_emissions: { type: "string" },
|
|
263
|
+
waste_and_emissions_operating_co_2emissions: { type: "string" },
|
|
264
|
+
link: { type: "string" },
|
|
265
|
+
},
|
|
266
|
+
required: [
|
|
267
|
+
"id",
|
|
268
|
+
"building_name",
|
|
269
|
+
"description",
|
|
270
|
+
"building_address_code",
|
|
271
|
+
"building_label",
|
|
272
|
+
"current_note",
|
|
273
|
+
"main_use",
|
|
274
|
+
"secondary_use",
|
|
275
|
+
"year_of_construction",
|
|
276
|
+
"method_of_protection",
|
|
277
|
+
"built_up_area",
|
|
278
|
+
"heated_bulding_volume",
|
|
279
|
+
"students_count",
|
|
280
|
+
"employees_count",
|
|
281
|
+
"classrooms_count",
|
|
282
|
+
"beds_count",
|
|
283
|
+
"eno_id",
|
|
284
|
+
"csu_code",
|
|
285
|
+
"ku_code",
|
|
286
|
+
"allotment_number",
|
|
287
|
+
"registration_unit",
|
|
288
|
+
"gas_consumption_normatives",
|
|
289
|
+
"heat_consumption_normatives",
|
|
290
|
+
"water_consumption_normatives",
|
|
291
|
+
"electricity_consumption_normatives_per_person",
|
|
292
|
+
"electricity_consumption_normatives",
|
|
293
|
+
"energetic_management",
|
|
294
|
+
"opening_hours",
|
|
295
|
+
"weekend_opening_hours",
|
|
296
|
+
"latitude",
|
|
297
|
+
"longitude",
|
|
298
|
+
"address_street",
|
|
299
|
+
"address_house_number",
|
|
300
|
+
"address_city",
|
|
301
|
+
"address_country",
|
|
302
|
+
"address_mail",
|
|
303
|
+
"address_phone",
|
|
304
|
+
"address_web_address",
|
|
305
|
+
"penb_penbnumber",
|
|
306
|
+
"penb_issue_date",
|
|
307
|
+
"penb_total_building_envelope_area",
|
|
308
|
+
"penb_volume_factor_of_avshape",
|
|
309
|
+
"penb_total_energy_reference_area",
|
|
310
|
+
"penb_total_provided_energy",
|
|
311
|
+
"penb_total_provided_energy_category",
|
|
312
|
+
"penb_primary_non_renewable_energy",
|
|
313
|
+
"penb_primary_non_renewable_energy_category",
|
|
314
|
+
"penb_building_envelope",
|
|
315
|
+
"penb_building_envelope_category",
|
|
316
|
+
"penb_heating",
|
|
317
|
+
"penb_heating_category",
|
|
318
|
+
"penb_cooling",
|
|
319
|
+
"penb_cooling_category",
|
|
320
|
+
"penb_ventilation",
|
|
321
|
+
"penb_ventilation_category",
|
|
322
|
+
"penb_humidity_adjustment",
|
|
323
|
+
"penb_humidity_adjustment_category",
|
|
324
|
+
"penb_warm_water",
|
|
325
|
+
"penb_warm_water_category",
|
|
326
|
+
"penb_lighting",
|
|
327
|
+
"penb_lighting_category",
|
|
328
|
+
"energy_audits_energy_audit",
|
|
329
|
+
"energy_audits_earegistration_number",
|
|
330
|
+
"energy_audits_created_at",
|
|
331
|
+
"building_envelope_side_wall_prevailing_construction",
|
|
332
|
+
"building_envelope_side_wall_area",
|
|
333
|
+
"building_envelope_side_wall_heat_insulation",
|
|
334
|
+
"building_envelope_side_wall_year_of_adjustment",
|
|
335
|
+
"building_envelope_side_wall_technical_condition",
|
|
336
|
+
"building_envelope_filling_of_hole_construction",
|
|
337
|
+
"building_envelope_filling_of_hole_area",
|
|
338
|
+
"building_envelope_filling_of_hole_year_of_adjustment",
|
|
339
|
+
"building_envelope_filling_of_hole_technical_condition",
|
|
340
|
+
"building_envelope_roof_construction",
|
|
341
|
+
"building_envelope_roof_area",
|
|
342
|
+
"building_envelope_roof_thermal_insulation",
|
|
343
|
+
"building_envelope_roof_year_of_adjustment",
|
|
344
|
+
"building_envelope_roof_technical_condition",
|
|
345
|
+
"building_envelope_floor_of_the_lowest_heated_floor_construction",
|
|
346
|
+
"building_envelope_floor_of_the_lowest_heated_floor_area",
|
|
347
|
+
"floor_of_the_lowest_heated_floor_thermal_insulation",
|
|
348
|
+
"building_envelope_floor_of_the_lowest_heated_floor_year_of_adjustment",
|
|
349
|
+
"floor_of_the_lowest_heated_floor_technical_condition",
|
|
350
|
+
"fuel_and_energy_coal",
|
|
351
|
+
"fuel_and_energy_gas",
|
|
352
|
+
"fuel_and_energy_electricity",
|
|
353
|
+
"fuel_and_energy_czt",
|
|
354
|
+
"fuel_and_energy_oze",
|
|
355
|
+
"fuel_and_energy_other",
|
|
356
|
+
"technical_equipment_heating_main_source_of_heat",
|
|
357
|
+
"technical_equipment_heating_heat_percentage",
|
|
358
|
+
"technical_equipment_heating_secondary_source_of_heat",
|
|
359
|
+
"technical_equipment_heating_heating_system",
|
|
360
|
+
"technical_equipment_heating_year",
|
|
361
|
+
"technical_equipment_heating_technical_condition",
|
|
362
|
+
"technical_equipment_cooling_cooling_system",
|
|
363
|
+
"technical_equipment_cooling_cooling_area_percentage",
|
|
364
|
+
"technical_equipment_cooling_year",
|
|
365
|
+
"technical_equipment_cooling_technical_condition",
|
|
366
|
+
"technical_equipment_ventilation_ventilation",
|
|
367
|
+
"technical_equipment_ventilation_year",
|
|
368
|
+
"technical_equipment_ventilation_technical_condition",
|
|
369
|
+
"technical_equipment_humidity_adjustment_humidity_adjustment",
|
|
370
|
+
"technical_equipment_humidity_adjustment_year",
|
|
371
|
+
"technical_equipment_humidity_adjustment_technical_condition",
|
|
372
|
+
"technical_equipment_hot_water_predominant_way_of_heating_tv",
|
|
373
|
+
"technical_equipment_hot_water_hot_water_source",
|
|
374
|
+
"technical_equipment_hot_water_year",
|
|
375
|
+
"technical_equipment_hot_water_technical_condition",
|
|
376
|
+
"technical_equipment_lighting_lighting",
|
|
377
|
+
"technical_equipment_lighting_year",
|
|
378
|
+
"technical_equipment_lighting_technical_condition",
|
|
379
|
+
"technical_equipment_lighting_other_technological_elements",
|
|
380
|
+
"technical_equipment_lighting_measurement_method",
|
|
381
|
+
"oze_energy_production_solar_energy_photovoltaic",
|
|
382
|
+
"oze_energy_production_solar_energy_photothermal",
|
|
383
|
+
"oze_energy_production_integrated_turbines_wind_energy",
|
|
384
|
+
"oze_energy_production_heat_pump",
|
|
385
|
+
"waste_and_emissions_solid_waste_production",
|
|
386
|
+
"waste_and_emissions_tied_co2_emissions",
|
|
387
|
+
"waste_and_emissions_sox_emissions",
|
|
388
|
+
"waste_and_emissions_operating_co_2emissions",
|
|
389
|
+
"link",
|
|
390
|
+
],
|
|
391
|
+
},
|
|
392
|
+
};
|
|
393
|
+
//# sourceMappingURL=BuildingsModel.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BuildingsModel.js","sourceRoot":"","sources":["../../../src/schema-definitions/models/BuildingsModel.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
|
|
2
|
+
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
|
|
3
|
+
import { IConsumptionModel } from "./interfaces";
|
|
4
|
+
export declare class ConsumptionModel extends Model<ConsumptionModel> implements IConsumptionModel {
|
|
5
|
+
static TABLE_NAME: string;
|
|
6
|
+
time_utc: string;
|
|
7
|
+
value: number;
|
|
8
|
+
addr: string;
|
|
9
|
+
variable: string;
|
|
10
|
+
type: string;
|
|
11
|
+
meter: string;
|
|
12
|
+
static attributeModel: ModelAttributes<ConsumptionModel>;
|
|
13
|
+
static arrayJsonSchema: JSONSchemaType<IConsumptionModel[]>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ConsumptionModel = void 0;
|
|
4
|
+
const sequelize_1 = require("@golemio/core/dist/shared/sequelize");
|
|
5
|
+
class ConsumptionModel extends sequelize_1.Model {
|
|
6
|
+
}
|
|
7
|
+
exports.ConsumptionModel = ConsumptionModel;
|
|
8
|
+
ConsumptionModel.TABLE_NAME = "consumption_energy_consumption";
|
|
9
|
+
ConsumptionModel.attributeModel = {
|
|
10
|
+
time_utc: {
|
|
11
|
+
primaryKey: true,
|
|
12
|
+
type: sequelize_1.DataTypes.DATE,
|
|
13
|
+
},
|
|
14
|
+
value: sequelize_1.DataTypes.NUMBER({
|
|
15
|
+
precision: 30,
|
|
16
|
+
scale: 15,
|
|
17
|
+
}),
|
|
18
|
+
addr: {
|
|
19
|
+
primaryKey: true,
|
|
20
|
+
type: sequelize_1.DataTypes.STRING(255),
|
|
21
|
+
},
|
|
22
|
+
variable: {
|
|
23
|
+
primaryKey: true,
|
|
24
|
+
type: sequelize_1.DataTypes.STRING(255),
|
|
25
|
+
field: "var",
|
|
26
|
+
},
|
|
27
|
+
type: sequelize_1.DataTypes.STRING(255),
|
|
28
|
+
commodity: sequelize_1.DataTypes.STRING(255),
|
|
29
|
+
unit: sequelize_1.DataTypes.STRING(255),
|
|
30
|
+
meter: {
|
|
31
|
+
primaryKey: true,
|
|
32
|
+
type: sequelize_1.DataTypes.STRING(255),
|
|
33
|
+
},
|
|
34
|
+
};
|
|
35
|
+
ConsumptionModel.arrayJsonSchema = {
|
|
36
|
+
type: "array",
|
|
37
|
+
items: {
|
|
38
|
+
type: "object",
|
|
39
|
+
properties: {
|
|
40
|
+
time_utc: { type: "string" },
|
|
41
|
+
value: { type: "number" },
|
|
42
|
+
addr: { type: "string" },
|
|
43
|
+
variable: { type: "string" },
|
|
44
|
+
type: { type: "string" },
|
|
45
|
+
meter: { type: "string" },
|
|
46
|
+
},
|
|
47
|
+
required: ["time_utc", "value", "addr", "variable", "type", "meter"],
|
|
48
|
+
},
|
|
49
|
+
};
|
|
50
|
+
//# sourceMappingURL=ConsumptionModel.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ConsumptionModel.js","sourceRoot":"","sources":["../../../src/schema-definitions/models/ConsumptionModel.ts"],"names":[],"mappings":";;;AACA,mEAAwF;AAGxF,MAAa,gBAAiB,SAAQ,iBAAuB;;AAA7D,4CAoDC;AAnDiB,2BAAU,GAAG,gCAAgC,CAAC;AAS9C,+BAAc,GAAsC;IAC9D,QAAQ,EAAE;QACN,UAAU,EAAE,IAAI;QAChB,IAAI,EAAE,qBAAS,CAAC,IAAI;KACvB;IACD,KAAK,EAAE,qBAAS,CAAC,MAAM,CAAC;QACpB,SAAS,EAAE,EAAE;QACb,KAAK,EAAE,EAAE;KACZ,CAAC;IACF,IAAI,EAAE;QACF,UAAU,EAAE,IAAI;QAChB,IAAI,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;KAC9B;IACD,QAAQ,EAAE;QACN,UAAU,EAAE,IAAI;QAChB,IAAI,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;QAC3B,KAAK,EAAE,KAAK;KACf;IACD,IAAI,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;IAC3B,SAAS,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;IAChC,IAAI,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;IAC3B,KAAK,EAAE;QACH,UAAU,EAAE,IAAI;QAChB,IAAI,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;KAC9B;CACJ,CAAC;AAEY,gCAAe,GAAwC;IACjE,IAAI,EAAE,OAAO;IACb,KAAK,EAAE;QACH,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACR,QAAQ,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YAC5B,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YACzB,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YACxB,QAAQ,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YAC5B,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YACxB,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;SAC5B;QACD,QAAQ,EAAE,CAAC,UAAU,EAAE,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC;KACvE;CACJ,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
|
|
2
|
+
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
|
|
3
|
+
import { IDevicesModel } from "./interfaces";
|
|
4
|
+
export declare class DevicesModel extends Model<DevicesModel> implements IDevicesModel {
|
|
5
|
+
static TABLE_NAME: string;
|
|
6
|
+
id: number;
|
|
7
|
+
addr: string;
|
|
8
|
+
description: string;
|
|
9
|
+
meter_number: string;
|
|
10
|
+
meter_index: string;
|
|
11
|
+
location_number: string;
|
|
12
|
+
location_description: string;
|
|
13
|
+
include_in_evaluation: string;
|
|
14
|
+
meter_type: string;
|
|
15
|
+
category: string;
|
|
16
|
+
unit: string;
|
|
17
|
+
replaced_meter_id: string;
|
|
18
|
+
deleted: string;
|
|
19
|
+
building_id: number;
|
|
20
|
+
static attributeModel: ModelAttributes<DevicesModel>;
|
|
21
|
+
static arrayJsonSchema: JSONSchemaType<IDevicesModel[]>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DevicesModel = void 0;
|
|
4
|
+
const sequelize_1 = require("@golemio/core/dist/shared/sequelize");
|
|
5
|
+
class DevicesModel extends sequelize_1.Model {
|
|
6
|
+
}
|
|
7
|
+
exports.DevicesModel = DevicesModel;
|
|
8
|
+
DevicesModel.TABLE_NAME = "consumption_energy_devices";
|
|
9
|
+
DevicesModel.attributeModel = {
|
|
10
|
+
id: {
|
|
11
|
+
primaryKey: true,
|
|
12
|
+
type: sequelize_1.DataTypes.INTEGER,
|
|
13
|
+
},
|
|
14
|
+
addr: sequelize_1.DataTypes.STRING(255),
|
|
15
|
+
description: sequelize_1.DataTypes.STRING(255),
|
|
16
|
+
meter_number: sequelize_1.DataTypes.STRING(255),
|
|
17
|
+
meter_index: sequelize_1.DataTypes.STRING(255),
|
|
18
|
+
location_number: sequelize_1.DataTypes.STRING(255),
|
|
19
|
+
location_description: sequelize_1.DataTypes.STRING(255),
|
|
20
|
+
include_in_evaluation: sequelize_1.DataTypes.STRING(255),
|
|
21
|
+
meter_type: sequelize_1.DataTypes.STRING(255),
|
|
22
|
+
category: sequelize_1.DataTypes.STRING(255),
|
|
23
|
+
unit: sequelize_1.DataTypes.STRING(255),
|
|
24
|
+
replaced_meter_id: sequelize_1.DataTypes.STRING(255),
|
|
25
|
+
deleted: sequelize_1.DataTypes.STRING(255),
|
|
26
|
+
building_id: sequelize_1.DataTypes.INTEGER,
|
|
27
|
+
};
|
|
28
|
+
DevicesModel.arrayJsonSchema = {
|
|
29
|
+
type: "array",
|
|
30
|
+
items: {
|
|
31
|
+
type: "object",
|
|
32
|
+
properties: {
|
|
33
|
+
id: { type: "integer" },
|
|
34
|
+
addr: { type: "string" },
|
|
35
|
+
description: { type: "string" },
|
|
36
|
+
meter_number: { type: "string" },
|
|
37
|
+
meter_index: { type: "string" },
|
|
38
|
+
location_number: { type: "string" },
|
|
39
|
+
location_description: { type: "string" },
|
|
40
|
+
include_in_evaluation: { type: "string" },
|
|
41
|
+
meter_type: { type: "string" },
|
|
42
|
+
category: { type: "string" },
|
|
43
|
+
unit: { type: "string" },
|
|
44
|
+
replaced_meter_id: { type: "string" },
|
|
45
|
+
deleted: { type: "string" },
|
|
46
|
+
building_id: { type: "integer" },
|
|
47
|
+
},
|
|
48
|
+
required: [
|
|
49
|
+
"id",
|
|
50
|
+
"addr",
|
|
51
|
+
"description",
|
|
52
|
+
"meter_number",
|
|
53
|
+
"meter_index",
|
|
54
|
+
"location_number",
|
|
55
|
+
"location_description",
|
|
56
|
+
"include_in_evaluation",
|
|
57
|
+
"meter_type",
|
|
58
|
+
"category",
|
|
59
|
+
"unit",
|
|
60
|
+
"replaced_meter_id",
|
|
61
|
+
"deleted",
|
|
62
|
+
"building_id",
|
|
63
|
+
],
|
|
64
|
+
},
|
|
65
|
+
};
|
|
66
|
+
//# sourceMappingURL=DevicesModel.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DevicesModel.js","sourceRoot":"","sources":["../../../src/schema-definitions/models/DevicesModel.ts"],"names":[],"mappings":";;;AACA,mEAAwF;AAGxF,MAAa,YAAa,SAAQ,iBAAmB;;AAArD,oCA4EC;AA3EiB,uBAAU,GAAG,4BAA4B,CAAC;AAiB1C,2BAAc,GAAkC;IAC1D,EAAE,EAAE;QACA,UAAU,EAAE,IAAI;QAChB,IAAI,EAAE,qBAAS,CAAC,OAAO;KAC1B;IACD,IAAI,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;IAC3B,WAAW,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;IAClC,YAAY,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;IACnC,WAAW,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;IAClC,eAAe,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;IACtC,oBAAoB,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;IAC3C,qBAAqB,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;IAC5C,UAAU,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;IACjC,QAAQ,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;IAC/B,IAAI,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;IAC3B,iBAAiB,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;IACxC,OAAO,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;IAC9B,WAAW,EAAE,qBAAS,CAAC,OAAO;CACjC,CAAC;AAEY,4BAAe,GAAoC;IAC7D,IAAI,EAAE,OAAO;IACb,KAAK,EAAE;QACH,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACR,EAAE,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;YACvB,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YACxB,WAAW,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YAC/B,YAAY,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YAChC,WAAW,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YAC/B,eAAe,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YACnC,oBAAoB,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YACxC,qBAAqB,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YACzC,UAAU,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YAC9B,QAAQ,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YAC5B,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YACxB,iBAAiB,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YACrC,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YAC3B,WAAW,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;SACnC;QACD,QAAQ,EAAE;YACN,IAAI;YACJ,MAAM;YACN,aAAa;YACb,cAAc;YACd,aAAa;YACb,iBAAiB;YACjB,sBAAsB;YACtB,uBAAuB;YACvB,YAAY;YACZ,UAAU;YACV,MAAM;YACN,mBAAmB;YACnB,SAAS;YACT,aAAa;SAChB;KACJ;CACJ,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./BuildingsModel"), exports);
|
|
18
|
+
__exportStar(require("./DevicesModel"), exports);
|
|
19
|
+
__exportStar(require("./ConsumptionModel"), exports);
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/schema-definitions/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,mDAAiC;AACjC,iDAA+B;AAC/B,qDAAmC"}
|