@golemio/energetics 1.0.13 → 1.0.14-dev.741822709
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,170 @@
|
|
|
1
|
+
export interface IOictBuildingsInput {
|
|
2
|
+
id: number;
|
|
3
|
+
name: string | null;
|
|
4
|
+
description: string | null;
|
|
5
|
+
buildingAddressCode: string | null;
|
|
6
|
+
label: string | null;
|
|
7
|
+
currentNote: string | null;
|
|
8
|
+
mainUse: string | null;
|
|
9
|
+
secondaryUse: string | null;
|
|
10
|
+
yearOfConstruction: string | null;
|
|
11
|
+
methodOfProtection: string | null;
|
|
12
|
+
builtUpArea: string | null;
|
|
13
|
+
heatedBuldingVolume: string | null;
|
|
14
|
+
studentsCount: string | null;
|
|
15
|
+
employeesCount: string | null;
|
|
16
|
+
classroomsCount: string | null;
|
|
17
|
+
bedsCount: string | null;
|
|
18
|
+
enoId: string | null;
|
|
19
|
+
csuCode: string | null;
|
|
20
|
+
kuCode: string | null;
|
|
21
|
+
allotmentNumber: string | null;
|
|
22
|
+
registrationUnit: string | null;
|
|
23
|
+
gasConsumptionNormatives: string | null;
|
|
24
|
+
heatConsumptionNormatives: string | null;
|
|
25
|
+
waterConsumptionNormatives: string | null;
|
|
26
|
+
electricityConsumptionNormativesPerPerson: string | null;
|
|
27
|
+
electricityConsumptionNormatives: string | null;
|
|
28
|
+
energeticManagement: string | null;
|
|
29
|
+
openingHours: string | null;
|
|
30
|
+
weekendOpeningHours: string | null;
|
|
31
|
+
latitude: string | null;
|
|
32
|
+
longitude: string | null;
|
|
33
|
+
link: string | null;
|
|
34
|
+
address: IOictBuildingAddress;
|
|
35
|
+
penb: IOictBuildingPenb;
|
|
36
|
+
energyAudits: IOictBuildingEnergyAudits;
|
|
37
|
+
buildingEnvelope: IOictBuildingEnvelope;
|
|
38
|
+
fuelAndEnergy: IOictBuildingFuelAndEnergy;
|
|
39
|
+
technicalEquipment: IOictBuildingTechnicalEquipment;
|
|
40
|
+
ozeEnergyProduction: IOictBuildingOzeEnergyProduction;
|
|
41
|
+
wasteAndEmissions: IOictBuildingWasteAndEmissions;
|
|
42
|
+
}
|
|
43
|
+
interface IOictBuildingAddress {
|
|
44
|
+
street: string | null;
|
|
45
|
+
houseNumber: string | null;
|
|
46
|
+
city: string | null;
|
|
47
|
+
country: string | null;
|
|
48
|
+
mail: string | null;
|
|
49
|
+
phone: string | number | null;
|
|
50
|
+
webAddress: string | null;
|
|
51
|
+
}
|
|
52
|
+
interface IOictBuildingPenb {
|
|
53
|
+
penbNumber: string | number | boolean | null;
|
|
54
|
+
issueDate: string | null;
|
|
55
|
+
totalBuildingEnvelopeArea: string | null;
|
|
56
|
+
volumeFactorOfAVShape: string | null;
|
|
57
|
+
totalEnergyReferenceArea: string | null;
|
|
58
|
+
totalProvidedEnergy: string | null;
|
|
59
|
+
totalProvidedEnergyCategory: string | null;
|
|
60
|
+
primaryNonRenewableEnergy: string | null;
|
|
61
|
+
primaryNonRenewableEnergyCategory: string | null;
|
|
62
|
+
buildingEnvelope: string | null;
|
|
63
|
+
buildingEnvelopeCategory: string | null;
|
|
64
|
+
heating: string | null;
|
|
65
|
+
heatingCategory: string | null;
|
|
66
|
+
cooling: string | null;
|
|
67
|
+
coolingCategory: string | null;
|
|
68
|
+
ventilation: string | null;
|
|
69
|
+
ventilationCategory: string | null;
|
|
70
|
+
humidityAdjustment: string | null;
|
|
71
|
+
humidityAdjustmentCategory: string | null;
|
|
72
|
+
warmWater: string | null;
|
|
73
|
+
warmWaterCategory: string | null;
|
|
74
|
+
lighting: string | null;
|
|
75
|
+
lightingCategory: string | null;
|
|
76
|
+
}
|
|
77
|
+
interface IOictBuildingEnergyAudits {
|
|
78
|
+
energyAudit: string | number | null;
|
|
79
|
+
eaRegistrationNumber: string | number | null;
|
|
80
|
+
createdAt: string | number | null;
|
|
81
|
+
}
|
|
82
|
+
interface IOictBuildingEnvelope {
|
|
83
|
+
sideWall: {
|
|
84
|
+
prevailingConstruction: string | null;
|
|
85
|
+
area: string | null;
|
|
86
|
+
heatInsulation: string | null;
|
|
87
|
+
yearOfAdjustment: string | number | null;
|
|
88
|
+
technicalCondition: string | number | null;
|
|
89
|
+
};
|
|
90
|
+
fillingOfHole: {
|
|
91
|
+
construction: string | null;
|
|
92
|
+
area: string | null;
|
|
93
|
+
yearOfAdjustment: string | number | null;
|
|
94
|
+
technicalCondition: string | number | null;
|
|
95
|
+
};
|
|
96
|
+
roof: {
|
|
97
|
+
construction: string | null;
|
|
98
|
+
area: string | null;
|
|
99
|
+
thermalInsulation: string | null;
|
|
100
|
+
yearOfAdjustment: string | number | null;
|
|
101
|
+
technicalCondition: string | number | null;
|
|
102
|
+
};
|
|
103
|
+
floorOfTheLowestHeatedFloor: {
|
|
104
|
+
construction: string | null;
|
|
105
|
+
area: string | null;
|
|
106
|
+
thermalInsulation: string | null;
|
|
107
|
+
yearOfAdjustment: string | number | null;
|
|
108
|
+
technicalCondition: string | number | null;
|
|
109
|
+
};
|
|
110
|
+
}
|
|
111
|
+
interface IOictBuildingFuelAndEnergy {
|
|
112
|
+
coal: string | null;
|
|
113
|
+
gas: string | null;
|
|
114
|
+
electricity: string | null;
|
|
115
|
+
czt: string | null;
|
|
116
|
+
oze: string | null;
|
|
117
|
+
other: string | null;
|
|
118
|
+
}
|
|
119
|
+
interface IOictBuildingTechnicalEquipment {
|
|
120
|
+
heating: {
|
|
121
|
+
mainSourceOfHeat: string | null;
|
|
122
|
+
heatPercentage: string | null;
|
|
123
|
+
secondarySourceOfHeat: string | null;
|
|
124
|
+
heatingSystem: string | null;
|
|
125
|
+
year: string | number | null;
|
|
126
|
+
technicalCondition: string | number | null;
|
|
127
|
+
};
|
|
128
|
+
cooling: {
|
|
129
|
+
coolingSystem: string | null;
|
|
130
|
+
coolingAreaPercentage: string | number | null;
|
|
131
|
+
year: string | number | null;
|
|
132
|
+
technicalCondition: string | number | null;
|
|
133
|
+
};
|
|
134
|
+
ventilation: {
|
|
135
|
+
ventilation: string | null;
|
|
136
|
+
year: string | number | null;
|
|
137
|
+
technicalCondition: string | number | null;
|
|
138
|
+
};
|
|
139
|
+
humidityAdjustment: {
|
|
140
|
+
humidityAdjustment: string | null;
|
|
141
|
+
year: string | number | null;
|
|
142
|
+
technicalCondition: string | number | null;
|
|
143
|
+
};
|
|
144
|
+
hotWater: {
|
|
145
|
+
predominantWayOfHeatingTv: string | null;
|
|
146
|
+
hotWaterSource: string | null;
|
|
147
|
+
year: string | number | null;
|
|
148
|
+
technicalCondition: string | number | null;
|
|
149
|
+
};
|
|
150
|
+
lighting: {
|
|
151
|
+
lighting: string | null;
|
|
152
|
+
year: string | number | null;
|
|
153
|
+
technicalCondition: string | number | null;
|
|
154
|
+
otherTechnologicalElements: string | number | null;
|
|
155
|
+
measurementMethod: string | null;
|
|
156
|
+
};
|
|
157
|
+
}
|
|
158
|
+
interface IOictBuildingOzeEnergyProduction {
|
|
159
|
+
solarEnergyPhotovoltaic: string | number | null;
|
|
160
|
+
solarEnergyPhotothermal: string | number | null;
|
|
161
|
+
integratedTurbinesWindEnergy: string | number | null;
|
|
162
|
+
heatPump: string | number | null;
|
|
163
|
+
}
|
|
164
|
+
interface IOictBuildingWasteAndEmissions {
|
|
165
|
+
solidWasteProduction: string | number | null;
|
|
166
|
+
tiedCo2Emissions: string | number | null;
|
|
167
|
+
soxEmissions: string | number | null;
|
|
168
|
+
operatingCo2Emissions: string | number | null;
|
|
169
|
+
}
|
|
170
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IOictBuildingsInput.js","sourceRoot":"","sources":["../../../../src/schema-definitions/datasources/interfaces/IOictBuildingsInput.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IOictConsumptionInput.js","sourceRoot":"","sources":["../../../../src/schema-definitions/datasources/interfaces/IOictConsumptionInput.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface IOictDevicesInput {
|
|
2
|
+
id: number;
|
|
3
|
+
addr: string | null;
|
|
4
|
+
description: string | null;
|
|
5
|
+
meterNumber: string | null;
|
|
6
|
+
meterIndex: string | number | null;
|
|
7
|
+
locationNumber: string | null;
|
|
8
|
+
locationDescription: string | null;
|
|
9
|
+
includeInEvaluation: string | null;
|
|
10
|
+
meterType: string | null;
|
|
11
|
+
category: string | null;
|
|
12
|
+
unit: string | null;
|
|
13
|
+
replacedMeterId: string | number | null;
|
|
14
|
+
deleted: string | null;
|
|
15
|
+
buildingId: number;
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IOictDevicesInput.js","sourceRoot":"","sources":["../../../../src/schema-definitions/datasources/interfaces/IOictDevicesInput.ts"],"names":[],"mappings":""}
|
|
@@ -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("./IOictBuildingsInput"), exports);
|
|
18
|
+
__exportStar(require("./IOictDevicesInput"), exports);
|
|
19
|
+
__exportStar(require("./IOictConsumptionInput"), exports);
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/schema-definitions/datasources/interfaces/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wDAAsC;AACtC,sDAAoC;AACpC,0DAAwC"}
|
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EnergeticsVpalac } from "./providers";
|
|
2
2
|
interface ISchema {
|
|
3
3
|
name: string;
|
|
4
4
|
pgSchema: string;
|
|
5
|
-
enesa: typeof EnergeticsEnesa;
|
|
6
5
|
vpalac: typeof EnergeticsVpalac;
|
|
7
6
|
}
|
|
8
7
|
declare const EnergeticsSchema: ISchema;
|
|
9
|
-
|
|
10
|
-
export import Enesa = EnergeticsEnesaTypes;
|
|
11
|
-
}
|
|
12
|
-
export { EnergeticsSchema, EnergeticsTypes };
|
|
8
|
+
export { EnergeticsSchema };
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.EnergeticsSchema = void 0;
|
|
4
4
|
const providers_1 = require("./providers");
|
|
5
5
|
const EnergeticsSchema = {
|
|
6
6
|
name: "Energetics",
|
|
7
7
|
pgSchema: "energetics",
|
|
8
8
|
// Providers
|
|
9
|
-
enesa: providers_1.EnergeticsEnesa,
|
|
10
9
|
vpalac: providers_1.EnergeticsVpalac,
|
|
11
10
|
};
|
|
12
11
|
exports.EnergeticsSchema = EnergeticsSchema;
|
|
13
|
-
var EnergeticsTypes;
|
|
14
|
-
(function (EnergeticsTypes) {
|
|
15
|
-
})(EnergeticsTypes || (EnergeticsTypes = {}));
|
|
16
|
-
exports.EnergeticsTypes = EnergeticsTypes;
|
|
17
12
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/schema-definitions/index.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/schema-definitions/index.ts"],"names":[],"mappings":";;;AAAA,2CAA+C;AAQ/C,MAAM,gBAAgB,GAAY;IAC9B,IAAI,EAAE,YAAY;IAClB,QAAQ,EAAE,YAAY;IAEtB,YAAY;IACZ,MAAM,EAAE,4BAAgB;CAC3B,CAAC;AAEO,4CAAgB"}
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
|
|
2
|
+
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
|
|
3
|
+
import { IBuildingsModel } from "./interfaces";
|
|
4
|
+
export declare class BuildingsModel extends Model<BuildingsModel> implements IBuildingsModel {
|
|
5
|
+
static TABLE_NAME: string;
|
|
6
|
+
id: number;
|
|
7
|
+
building_name: string;
|
|
8
|
+
description: string;
|
|
9
|
+
building_address_code: string;
|
|
10
|
+
building_label: string;
|
|
11
|
+
current_note: string;
|
|
12
|
+
main_use: string;
|
|
13
|
+
secondary_use: string;
|
|
14
|
+
year_of_construction: string;
|
|
15
|
+
method_of_protection: string;
|
|
16
|
+
built_up_area: string;
|
|
17
|
+
heated_bulding_volume: string;
|
|
18
|
+
students_count: string;
|
|
19
|
+
employees_count: string;
|
|
20
|
+
classrooms_count: string;
|
|
21
|
+
beds_count: string;
|
|
22
|
+
eno_id: string;
|
|
23
|
+
csu_code: string;
|
|
24
|
+
ku_code: string;
|
|
25
|
+
allotment_number: string;
|
|
26
|
+
registration_unit: string;
|
|
27
|
+
gas_consumption_normatives: string;
|
|
28
|
+
heat_consumption_normatives: string;
|
|
29
|
+
water_consumption_normatives: string;
|
|
30
|
+
electricity_consumption_normatives_per_person: string;
|
|
31
|
+
electricity_consumption_normatives: string;
|
|
32
|
+
energetic_management: string;
|
|
33
|
+
opening_hours: string;
|
|
34
|
+
weekend_opening_hours: string;
|
|
35
|
+
latitude: string;
|
|
36
|
+
longitude: string;
|
|
37
|
+
address_street: string;
|
|
38
|
+
address_house_number: string;
|
|
39
|
+
address_city: string;
|
|
40
|
+
address_country: string;
|
|
41
|
+
address_mail: string;
|
|
42
|
+
address_phone: string;
|
|
43
|
+
address_web_address: string;
|
|
44
|
+
penb_penbnumber: string;
|
|
45
|
+
penb_issue_date: string;
|
|
46
|
+
penb_total_building_envelope_area: string;
|
|
47
|
+
penb_volume_factor_of_avshape: string;
|
|
48
|
+
penb_total_energy_reference_area: string;
|
|
49
|
+
penb_total_provided_energy: string;
|
|
50
|
+
penb_total_provided_energy_category: string;
|
|
51
|
+
penb_primary_non_renewable_energy: string;
|
|
52
|
+
penb_primary_non_renewable_energy_category: string;
|
|
53
|
+
penb_building_envelope: string;
|
|
54
|
+
penb_building_envelope_category: string;
|
|
55
|
+
penb_heating: string;
|
|
56
|
+
penb_heating_category: string;
|
|
57
|
+
penb_cooling: string;
|
|
58
|
+
penb_cooling_category: string;
|
|
59
|
+
penb_ventilation: string;
|
|
60
|
+
penb_ventilation_category: string;
|
|
61
|
+
penb_humidity_adjustment: string;
|
|
62
|
+
penb_humidity_adjustment_category: string;
|
|
63
|
+
penb_warm_water: string;
|
|
64
|
+
penb_warm_water_category: string;
|
|
65
|
+
penb_lighting: string;
|
|
66
|
+
penb_lighting_category: string;
|
|
67
|
+
energy_audits_energy_audit: string;
|
|
68
|
+
energy_audits_earegistration_number: string;
|
|
69
|
+
energy_audits_created_at: string;
|
|
70
|
+
building_envelope_side_wall_prevailing_construction: string;
|
|
71
|
+
building_envelope_side_wall_area: string;
|
|
72
|
+
building_envelope_side_wall_heat_insulation: string;
|
|
73
|
+
building_envelope_side_wall_year_of_adjustment: string;
|
|
74
|
+
building_envelope_side_wall_technical_condition: string;
|
|
75
|
+
building_envelope_filling_of_hole_construction: string;
|
|
76
|
+
building_envelope_filling_of_hole_area: string;
|
|
77
|
+
building_envelope_filling_of_hole_year_of_adjustment: string;
|
|
78
|
+
building_envelope_filling_of_hole_technical_condition: string;
|
|
79
|
+
building_envelope_roof_construction: string;
|
|
80
|
+
building_envelope_roof_area: string;
|
|
81
|
+
building_envelope_roof_thermal_insulation: string;
|
|
82
|
+
building_envelope_roof_year_of_adjustment: string;
|
|
83
|
+
building_envelope_roof_technical_condition: string;
|
|
84
|
+
building_envelope_floor_of_the_lowest_heated_floor_construction: string;
|
|
85
|
+
building_envelope_floor_of_the_lowest_heated_floor_area: string;
|
|
86
|
+
floor_of_the_lowest_heated_floor_thermal_insulation: string;
|
|
87
|
+
building_envelope_floor_of_the_lowest_heated_floor_year_of_adjustment: string;
|
|
88
|
+
floor_of_the_lowest_heated_floor_technical_condition: string;
|
|
89
|
+
fuel_and_energy_coal: string;
|
|
90
|
+
fuel_and_energy_gas: string;
|
|
91
|
+
fuel_and_energy_electricity: string;
|
|
92
|
+
fuel_and_energy_czt: string;
|
|
93
|
+
fuel_and_energy_oze: string;
|
|
94
|
+
fuel_and_energy_other: string;
|
|
95
|
+
technical_equipment_heating_main_source_of_heat: string;
|
|
96
|
+
technical_equipment_heating_heat_percentage: string;
|
|
97
|
+
technical_equipment_heating_secondary_source_of_heat: string;
|
|
98
|
+
technical_equipment_heating_heating_system: string;
|
|
99
|
+
technical_equipment_heating_year: string;
|
|
100
|
+
technical_equipment_heating_technical_condition: string;
|
|
101
|
+
technical_equipment_cooling_cooling_system: string;
|
|
102
|
+
technical_equipment_cooling_cooling_area_percentage: string;
|
|
103
|
+
technical_equipment_cooling_year: string;
|
|
104
|
+
technical_equipment_cooling_technical_condition: string;
|
|
105
|
+
technical_equipment_ventilation_ventilation: string;
|
|
106
|
+
technical_equipment_ventilation_year: string;
|
|
107
|
+
technical_equipment_ventilation_technical_condition: string;
|
|
108
|
+
technical_equipment_humidity_adjustment_humidity_adjustment: string;
|
|
109
|
+
technical_equipment_humidity_adjustment_year: string;
|
|
110
|
+
technical_equipment_humidity_adjustment_technical_condition: string;
|
|
111
|
+
technical_equipment_hot_water_predominant_way_of_heating_tv: string;
|
|
112
|
+
technical_equipment_hot_water_hot_water_source: string;
|
|
113
|
+
technical_equipment_hot_water_year: string;
|
|
114
|
+
technical_equipment_hot_water_technical_condition: string;
|
|
115
|
+
technical_equipment_lighting_lighting: string;
|
|
116
|
+
technical_equipment_lighting_year: string;
|
|
117
|
+
technical_equipment_lighting_technical_condition: string;
|
|
118
|
+
technical_equipment_lighting_other_technological_elements: string;
|
|
119
|
+
technical_equipment_lighting_measurement_method: string;
|
|
120
|
+
oze_energy_production_solar_energy_photovoltaic: string;
|
|
121
|
+
oze_energy_production_solar_energy_photothermal: string;
|
|
122
|
+
oze_energy_production_integrated_turbines_wind_energy: string;
|
|
123
|
+
oze_energy_production_heat_pump: string;
|
|
124
|
+
waste_and_emissions_solid_waste_production: string;
|
|
125
|
+
waste_and_emissions_tied_co2_emissions: string;
|
|
126
|
+
waste_and_emissions_sox_emissions: string;
|
|
127
|
+
waste_and_emissions_operating_co_2emissions: string;
|
|
128
|
+
link: string;
|
|
129
|
+
static attributeModel: ModelAttributes<BuildingsModel>;
|
|
130
|
+
static arrayJsonSchema: JSONSchemaType<IBuildingsModel[]>;
|
|
131
|
+
}
|