@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.
Files changed (142) hide show
  1. package/dist/integration-engine/helpers/index.d.ts +0 -1
  2. package/dist/integration-engine/helpers/index.js +0 -1
  3. package/dist/integration-engine/helpers/index.js.map +1 -1
  4. package/dist/integration-engine/index.d.ts +3 -2
  5. package/dist/integration-engine/index.js +4 -2
  6. package/dist/integration-engine/index.js.map +1 -1
  7. package/dist/integration-engine/queueDefinitions.d.ts +3 -0
  8. package/dist/integration-engine/queueDefinitions.js +4 -11
  9. package/dist/integration-engine/queueDefinitions.js.map +1 -1
  10. package/dist/integration-engine/transformations/index.d.ts +0 -3
  11. package/dist/integration-engine/transformations/index.js +0 -3
  12. package/dist/integration-engine/transformations/index.js.map +1 -1
  13. package/dist/integration-engine/workers/index.d.ts +0 -1
  14. package/dist/integration-engine/workers/index.js +0 -1
  15. package/dist/integration-engine/workers/index.js.map +1 -1
  16. package/dist/integration-engine/workers/oict-energetika/OictEnergetikaWorker.d.ts +5 -0
  17. package/dist/integration-engine/workers/oict-energetika/OictEnergetikaWorker.js +21 -0
  18. package/dist/integration-engine/workers/oict-energetika/OictEnergetikaWorker.js.map +1 -0
  19. package/dist/integration-engine/workers/oict-energetika/data-access/BuildingsRepository.d.ts +4 -0
  20. package/dist/integration-engine/workers/oict-energetika/data-access/BuildingsRepository.js +19 -0
  21. package/dist/integration-engine/workers/oict-energetika/data-access/BuildingsRepository.js.map +1 -0
  22. package/dist/integration-engine/workers/oict-energetika/data-access/ConsumptionRepository.d.ts +6 -0
  23. package/dist/integration-engine/workers/oict-energetika/data-access/ConsumptionRepository.js +37 -0
  24. package/dist/integration-engine/workers/oict-energetika/data-access/ConsumptionRepository.js.map +1 -0
  25. package/dist/integration-engine/workers/oict-energetika/data-access/DevicesRepository.d.ts +4 -0
  26. package/dist/integration-engine/workers/oict-energetika/data-access/DevicesRepository.js +19 -0
  27. package/dist/integration-engine/workers/oict-energetika/data-access/DevicesRepository.js.map +1 -0
  28. package/dist/integration-engine/workers/oict-energetika/datasources/OictDataSourceFactory.d.ts +10 -0
  29. package/dist/integration-engine/workers/oict-energetika/datasources/OictDataSourceFactory.js +23 -0
  30. package/dist/integration-engine/workers/oict-energetika/datasources/OictDataSourceFactory.js.map +1 -0
  31. package/dist/integration-engine/workers/oict-energetika/datasources/helpers/OictApiHelper.d.ts +12 -0
  32. package/dist/integration-engine/workers/oict-energetika/datasources/helpers/OictApiHelper.js +48 -0
  33. package/dist/integration-engine/workers/oict-energetika/datasources/helpers/OictApiHelper.js.map +1 -0
  34. package/dist/integration-engine/workers/oict-energetika/datasources/helpers/index.d.ts +1 -0
  35. package/dist/integration-engine/workers/oict-energetika/datasources/helpers/index.js +18 -0
  36. package/dist/integration-engine/workers/oict-energetika/datasources/helpers/index.js.map +1 -0
  37. package/dist/integration-engine/workers/oict-energetika/interfaces/IFetchDataInput.d.ts +3 -0
  38. package/dist/integration-engine/workers/oict-energetika/interfaces/IFetchDataInput.js +3 -0
  39. package/dist/integration-engine/workers/oict-energetika/interfaces/IFetchDataInput.js.map +1 -0
  40. package/dist/integration-engine/workers/oict-energetika/schema/FetchDataSchema.d.ts +4 -0
  41. package/dist/integration-engine/workers/oict-energetika/schema/FetchDataSchema.js +22 -0
  42. package/dist/integration-engine/workers/oict-energetika/schema/FetchDataSchema.js.map +1 -0
  43. package/dist/integration-engine/workers/oict-energetika/tasks/FetchBuildingsTask.d.ts +9 -0
  44. package/dist/integration-engine/workers/oict-energetika/tasks/FetchBuildingsTask.js +44 -0
  45. package/dist/integration-engine/workers/oict-energetika/tasks/FetchBuildingsTask.js.map +1 -0
  46. package/dist/integration-engine/workers/oict-energetika/tasks/FetchConsumptionTask.d.ts +13 -0
  47. package/dist/integration-engine/workers/oict-energetika/tasks/FetchConsumptionTask.js +66 -0
  48. package/dist/integration-engine/workers/oict-energetika/tasks/FetchConsumptionTask.js.map +1 -0
  49. package/dist/integration-engine/workers/oict-energetika/tasks/FetchDataTask.d.ts +10 -0
  50. package/dist/integration-engine/workers/oict-energetika/tasks/FetchDataTask.js +32 -0
  51. package/dist/integration-engine/workers/oict-energetika/tasks/FetchDataTask.js.map +1 -0
  52. package/dist/integration-engine/workers/oict-energetika/tasks/FetchDevicesTask.d.ts +9 -0
  53. package/dist/integration-engine/workers/oict-energetika/tasks/FetchDevicesTask.js +44 -0
  54. package/dist/integration-engine/workers/oict-energetika/tasks/FetchDevicesTask.js.map +1 -0
  55. package/dist/integration-engine/workers/oict-energetika/transformations/BuildingsTransformation.d.ts +7 -0
  56. package/dist/integration-engine/{transformations/EnesaEnergyBuildingsTransformation.js → workers/oict-energetika/transformations/BuildingsTransformation.js} +131 -133
  57. package/dist/integration-engine/workers/oict-energetika/transformations/BuildingsTransformation.js.map +1 -0
  58. package/dist/integration-engine/workers/oict-energetika/transformations/ConsumptionTransformation.d.ts +7 -0
  59. package/dist/integration-engine/{transformations/EnesaEnergyConsumptionTransformation.js → workers/oict-energetika/transformations/ConsumptionTransformation.js} +12 -16
  60. package/dist/integration-engine/workers/oict-energetika/transformations/ConsumptionTransformation.js.map +1 -0
  61. package/dist/integration-engine/workers/oict-energetika/transformations/DevicesTransformation.d.ts +7 -0
  62. package/dist/integration-engine/{transformations/EnesaEnergyDevicesTransformation.js → workers/oict-energetika/transformations/DevicesTransformation.js} +10 -12
  63. package/dist/integration-engine/workers/oict-energetika/transformations/DevicesTransformation.js.map +1 -0
  64. package/dist/schema-definitions/datasources/OictBuildingsJsonSchema.d.ts +3 -0
  65. package/dist/schema-definitions/datasources/OictBuildingsJsonSchema.js +356 -0
  66. package/dist/schema-definitions/datasources/OictBuildingsJsonSchema.js.map +1 -0
  67. package/dist/schema-definitions/datasources/OictConsumptionJsonSchema.d.ts +3 -0
  68. package/dist/schema-definitions/datasources/OictConsumptionJsonSchema.js +19 -0
  69. package/dist/schema-definitions/datasources/OictConsumptionJsonSchema.js.map +1 -0
  70. package/dist/schema-definitions/datasources/OictDevicesJsonSchema.d.ts +3 -0
  71. package/dist/schema-definitions/datasources/OictDevicesJsonSchema.js +42 -0
  72. package/dist/schema-definitions/datasources/OictDevicesJsonSchema.js.map +1 -0
  73. package/dist/schema-definitions/datasources/index.d.ts +3 -0
  74. package/dist/schema-definitions/datasources/index.js +20 -0
  75. package/dist/schema-definitions/datasources/index.js.map +1 -0
  76. package/dist/schema-definitions/datasources/interfaces/IOictBuildingsInput.d.ts +170 -0
  77. package/dist/schema-definitions/datasources/interfaces/IOictBuildingsInput.js +3 -0
  78. package/dist/schema-definitions/datasources/interfaces/IOictBuildingsInput.js.map +1 -0
  79. package/dist/schema-definitions/datasources/interfaces/IOictConsumptionInput.d.ts +8 -0
  80. package/dist/schema-definitions/datasources/interfaces/IOictConsumptionInput.js +3 -0
  81. package/dist/schema-definitions/datasources/interfaces/IOictConsumptionInput.js.map +1 -0
  82. package/dist/schema-definitions/datasources/interfaces/IOictDevicesInput.d.ts +16 -0
  83. package/dist/schema-definitions/datasources/interfaces/IOictDevicesInput.js +3 -0
  84. package/dist/schema-definitions/datasources/interfaces/IOictDevicesInput.js.map +1 -0
  85. package/dist/schema-definitions/datasources/interfaces/index.d.ts +3 -0
  86. package/dist/schema-definitions/datasources/interfaces/index.js +20 -0
  87. package/dist/schema-definitions/datasources/interfaces/index.js.map +1 -0
  88. package/dist/schema-definitions/index.d.ts +2 -6
  89. package/dist/schema-definitions/index.js +1 -6
  90. package/dist/schema-definitions/index.js.map +1 -1
  91. package/dist/schema-definitions/models/BuildingsModel.d.ts +131 -0
  92. package/dist/schema-definitions/models/BuildingsModel.js +393 -0
  93. package/dist/schema-definitions/models/BuildingsModel.js.map +1 -0
  94. package/dist/schema-definitions/models/ConsumptionModel.d.ts +14 -0
  95. package/dist/schema-definitions/models/ConsumptionModel.js +50 -0
  96. package/dist/schema-definitions/models/ConsumptionModel.js.map +1 -0
  97. package/dist/schema-definitions/models/DevicesModel.d.ts +22 -0
  98. package/dist/schema-definitions/models/DevicesModel.js +66 -0
  99. package/dist/schema-definitions/models/DevicesModel.js.map +1 -0
  100. package/dist/schema-definitions/models/index.d.ts +3 -0
  101. package/dist/schema-definitions/models/index.js +20 -0
  102. package/dist/schema-definitions/models/index.js.map +1 -0
  103. package/dist/schema-definitions/models/interfaces/IBuildingsModel.d.ts +125 -0
  104. package/dist/schema-definitions/models/interfaces/IBuildingsModel.js +3 -0
  105. package/dist/schema-definitions/models/interfaces/IBuildingsModel.js.map +1 -0
  106. package/dist/schema-definitions/models/interfaces/IConsumptionModel.d.ts +8 -0
  107. package/dist/schema-definitions/models/interfaces/IConsumptionModel.js +3 -0
  108. package/dist/schema-definitions/models/interfaces/IConsumptionModel.js.map +1 -0
  109. package/dist/schema-definitions/models/interfaces/IDevicesModel.d.ts +16 -0
  110. package/dist/schema-definitions/models/interfaces/IDevicesModel.js +3 -0
  111. package/dist/schema-definitions/models/interfaces/IDevicesModel.js.map +1 -0
  112. package/dist/schema-definitions/models/interfaces/index.d.ts +3 -0
  113. package/dist/schema-definitions/models/interfaces/index.js +20 -0
  114. package/dist/schema-definitions/models/interfaces/index.js.map +1 -0
  115. package/dist/schema-definitions/providers/index.d.ts +0 -1
  116. package/dist/schema-definitions/providers/index.js +0 -1
  117. package/dist/schema-definitions/providers/index.js.map +1 -1
  118. package/package.json +6 -6
  119. package/dist/integration-engine/helpers/EnesaApiHelper.d.ts +0 -17
  120. package/dist/integration-engine/helpers/EnesaApiHelper.js +0 -23
  121. package/dist/integration-engine/helpers/EnesaApiHelper.js.map +0 -1
  122. package/dist/integration-engine/transformations/EnesaEnergyBuildingsTransformation.d.ts +0 -8
  123. package/dist/integration-engine/transformations/EnesaEnergyBuildingsTransformation.js.map +0 -1
  124. package/dist/integration-engine/transformations/EnesaEnergyConsumptionTransformation.d.ts +0 -8
  125. package/dist/integration-engine/transformations/EnesaEnergyConsumptionTransformation.js.map +0 -1
  126. package/dist/integration-engine/transformations/EnesaEnergyDevicesTransformation.d.ts +0 -8
  127. package/dist/integration-engine/transformations/EnesaEnergyDevicesTransformation.js.map +0 -1
  128. package/dist/integration-engine/workers/EnergeticsEnesaWorker.d.ts +0 -27
  129. package/dist/integration-engine/workers/EnergeticsEnesaWorker.js +0 -142
  130. package/dist/integration-engine/workers/EnergeticsEnesaWorker.js.map +0 -1
  131. package/dist/schema-definitions/providers/EnergeticsEnesa.d.ts +0 -1087
  132. package/dist/schema-definitions/providers/EnergeticsEnesa.js +0 -35
  133. package/dist/schema-definitions/providers/EnergeticsEnesa.js.map +0 -1
  134. package/dist/schema-definitions/providers/EnergeticsEnesaDatasourceSchemas.d.ts +0 -592
  135. package/dist/schema-definitions/providers/EnergeticsEnesaDatasourceSchemas.js +0 -685
  136. package/dist/schema-definitions/providers/EnergeticsEnesaDatasourceSchemas.js.map +0 -1
  137. package/dist/schema-definitions/providers/EnergeticsEnesaOutputSchemas.d.ts +0 -463
  138. package/dist/schema-definitions/providers/EnergeticsEnesaOutputSchemas.js +0 -608
  139. package/dist/schema-definitions/providers/EnergeticsEnesaOutputSchemas.js.map +0 -1
  140. package/dist/schema-definitions/providers/EnergeticsEnesaSDMA.d.ts +0 -5
  141. package/dist/schema-definitions/providers/EnergeticsEnesaSDMA.js +0 -202
  142. package/dist/schema-definitions/providers/EnergeticsEnesaSDMA.js.map +0 -1
@@ -1,1087 +0,0 @@
1
- import { ModelAttributes } from "@golemio/core/dist/shared/sequelize";
2
- declare type Element<T extends string> = Record<T, any>;
3
- declare const EnergeticsEnesa: {
4
- buildings: {
5
- datasourceJsonSchema: {
6
- type: string;
7
- items: {
8
- type: string;
9
- properties: {
10
- Id: {
11
- type: string;
12
- };
13
- Name: {
14
- type: string[];
15
- };
16
- Description: {
17
- type: string[];
18
- };
19
- BuildingAddressCode: {
20
- type: string[];
21
- };
22
- Label: {
23
- type: string[];
24
- };
25
- CurrentNote: {
26
- type: string[];
27
- };
28
- MainUse: {
29
- type: string[];
30
- };
31
- SecondaryUse: {
32
- type: string[];
33
- };
34
- YearOfConstruction: {
35
- type: string[];
36
- };
37
- MethodOfProtection: {
38
- type: string[];
39
- };
40
- BuiltUpArea: {
41
- type: string[];
42
- };
43
- HeatedBuldingVolume: {
44
- type: string[];
45
- };
46
- StudentsCount: {
47
- type: string[];
48
- };
49
- EmployeesCount: {
50
- type: string[];
51
- };
52
- ClassroomsCount: {
53
- type: string[];
54
- };
55
- BedsCount: {
56
- type: string[];
57
- };
58
- ENOId: {
59
- type: string[];
60
- };
61
- CSUCode: {
62
- type: string[];
63
- };
64
- KUCode: {
65
- type: string[];
66
- };
67
- AllotmentNumber: {
68
- type: string[];
69
- };
70
- RegistrationUnit: {
71
- type: string[];
72
- };
73
- GasConsumptionNormatives: {
74
- type: string[];
75
- };
76
- HeatConsumptionNormatives: {
77
- type: string[];
78
- };
79
- WaterConsumptionNormatives: {
80
- type: string[];
81
- };
82
- ElectricityConsumptionNormativesPerPerson: {
83
- type: string[];
84
- };
85
- ElectricityConsumptionNormatives: {
86
- type: string[];
87
- };
88
- EnergeticManagement: {
89
- type: string[];
90
- };
91
- OpeningHours: {
92
- type: string[];
93
- };
94
- WeekendOpeningHours: {
95
- type: string[];
96
- };
97
- Latitude: {
98
- type: string[];
99
- };
100
- Longitude: {
101
- type: string[];
102
- };
103
- Address: {
104
- type: string;
105
- properties: {
106
- street: {
107
- type: string[];
108
- };
109
- houseNumber: {
110
- type: string[];
111
- };
112
- city: {
113
- type: string[];
114
- };
115
- country: {
116
- type: string[];
117
- };
118
- mail: {
119
- type: string[];
120
- };
121
- phone: {
122
- type: string[];
123
- };
124
- webAddress: {
125
- type: string[];
126
- };
127
- };
128
- required: string[];
129
- additionalProperties: boolean;
130
- };
131
- PENB: {
132
- type: string;
133
- properties: {
134
- penbnumber: {
135
- type: string[];
136
- };
137
- issueDate: {
138
- type: string[];
139
- };
140
- totalBuildingEnvelopeArea: {
141
- type: string[];
142
- };
143
- volumeFactorOfAvshape: {
144
- type: string[];
145
- };
146
- totalEnergyReferenceArea: {
147
- type: string[];
148
- };
149
- totalProvidedEnergy: {
150
- type: string[];
151
- };
152
- totalProvidedEnergyCategory: {
153
- type: string[];
154
- };
155
- primaryNonRenewableEnergy: {
156
- type: string[];
157
- };
158
- primaryNonRenewableEnergyCategory: {
159
- type: string[];
160
- };
161
- buildingEnvelope: {
162
- type: string[];
163
- };
164
- buildingEnvelopeCategory: {
165
- type: string[];
166
- };
167
- heating: {
168
- type: string[];
169
- };
170
- heatingCategory: {
171
- type: string[];
172
- };
173
- cooling: {
174
- type: string[];
175
- };
176
- coolingCategory: {
177
- type: string[];
178
- };
179
- ventilation: {
180
- type: string[];
181
- };
182
- ventilationCategory: {
183
- type: string[];
184
- };
185
- humidityAdjustment: {
186
- type: string[];
187
- };
188
- humidityAdjustmentCategory: {
189
- type: string[];
190
- };
191
- warmWater: {
192
- type: string[];
193
- };
194
- warmWaterCategory: {
195
- type: string[];
196
- };
197
- lighting: {
198
- type: string[];
199
- };
200
- lightingCategory: {
201
- type: string[];
202
- };
203
- };
204
- required: string[];
205
- additionalProperties: boolean;
206
- };
207
- EnergyAudits: {
208
- type: string;
209
- properties: {
210
- energyAudit: {
211
- type: string[];
212
- };
213
- earegistrationNumber: {
214
- type: string[];
215
- };
216
- createdAt: {
217
- type: string[];
218
- };
219
- };
220
- required: string[];
221
- additionalProperties: boolean;
222
- };
223
- BuildingEnvelope: {
224
- type: string;
225
- properties: {
226
- sideWall: {
227
- type: string;
228
- properties: {
229
- prevailingConstruction: {
230
- type: string[];
231
- };
232
- area: {
233
- type: string[];
234
- };
235
- heatInsulation: {
236
- type: string[];
237
- };
238
- yearOfAdjustment: {
239
- type: string[];
240
- };
241
- technicalCondition: {
242
- type: string[];
243
- };
244
- };
245
- required: string[];
246
- additionalProperties: boolean;
247
- };
248
- fillingOfHole: {
249
- type: string;
250
- properties: {
251
- construction: {
252
- type: string[];
253
- };
254
- area: {
255
- type: string[];
256
- };
257
- yearOfAdjustment: {
258
- type: string[];
259
- };
260
- technicalCondition: {
261
- type: string[];
262
- };
263
- };
264
- required: string[];
265
- additionalProperties: boolean;
266
- };
267
- roof: {
268
- type: string;
269
- properties: {
270
- construction: {
271
- type: string[];
272
- };
273
- area: {
274
- type: string[];
275
- };
276
- thermalInsulation: {
277
- type: string[];
278
- };
279
- yearOfAdjustment: {
280
- type: string[];
281
- };
282
- technicalCondition: {
283
- type: string[];
284
- };
285
- };
286
- required: string[];
287
- additionalProperties: boolean;
288
- };
289
- floorOfTheLowestHeatedFloor: {
290
- type: string;
291
- properties: {
292
- construction: {
293
- type: string[];
294
- };
295
- area: {
296
- type: string[];
297
- };
298
- thermalInsulation: {
299
- type: string[];
300
- };
301
- yearOfAdjustment: {
302
- type: string[];
303
- };
304
- technicalCondition: {
305
- type: string[];
306
- };
307
- };
308
- required: string[];
309
- additionalProperties: boolean;
310
- };
311
- };
312
- required: string[];
313
- additionalProperties: boolean;
314
- };
315
- FuelAndEnergy: {
316
- type: string;
317
- properties: {
318
- coal: {
319
- type: string[];
320
- };
321
- gas: {
322
- type: string[];
323
- };
324
- electricity: {
325
- type: string[];
326
- };
327
- czt: {
328
- type: string[];
329
- };
330
- oze: {
331
- type: string[];
332
- };
333
- other: {
334
- type: string[];
335
- };
336
- };
337
- required: string[];
338
- additionalProperties: boolean;
339
- };
340
- TechnicalEquipment: {
341
- type: string;
342
- properties: {
343
- heating: {
344
- type: string;
345
- properties: {
346
- mainSourceOfHeat: {
347
- type: string[];
348
- };
349
- heatPercentage: {
350
- type: string[];
351
- };
352
- secondarySourceOfHeat: {
353
- type: string[];
354
- };
355
- heatingSystem: {
356
- type: string[];
357
- };
358
- year: {
359
- type: string[];
360
- };
361
- technicalCondition: {
362
- type: string[];
363
- };
364
- };
365
- required: string[];
366
- additionalProperties: boolean;
367
- };
368
- cooling: {
369
- type: string;
370
- properties: {
371
- coolingSystem: {
372
- type: string[];
373
- };
374
- coolingAreaPercentage: {
375
- type: string[];
376
- };
377
- year: {
378
- type: string[];
379
- };
380
- technicalCondition: {
381
- type: string[];
382
- };
383
- };
384
- required: string[];
385
- additionalProperties: boolean;
386
- };
387
- ventilation: {
388
- type: string;
389
- properties: {
390
- ventilation: {
391
- type: string[];
392
- };
393
- year: {
394
- type: string[];
395
- };
396
- technicalCondition: {
397
- type: string[];
398
- };
399
- };
400
- required: string[];
401
- additionalProperties: boolean;
402
- };
403
- humidityAdjustment: {
404
- type: string;
405
- properties: {
406
- humidityAdjustment: {
407
- type: string[];
408
- };
409
- year: {
410
- type: string[];
411
- };
412
- technicalCondition: {
413
- type: string[];
414
- };
415
- };
416
- required: string[];
417
- additionalProperties: boolean;
418
- };
419
- hotWater: {
420
- type: string;
421
- properties: {
422
- predominantWayOfHeatingTv: {
423
- type: string[];
424
- };
425
- hotWaterSource: {
426
- type: string[];
427
- };
428
- year: {
429
- type: string[];
430
- };
431
- technicalCondition: {
432
- type: string[];
433
- };
434
- };
435
- required: string[];
436
- additionalProperties: boolean;
437
- };
438
- lighting: {
439
- type: string;
440
- properties: {
441
- lighting: {
442
- type: string[];
443
- };
444
- year: {
445
- type: string[];
446
- };
447
- technicalCondition: {
448
- type: string[];
449
- };
450
- otherTechnologicalElements: {
451
- type: string[];
452
- };
453
- measurementMethod: {
454
- type: string[];
455
- };
456
- };
457
- required: string[];
458
- additionalProperties: boolean;
459
- };
460
- };
461
- required: string[];
462
- additionalProperties: boolean;
463
- };
464
- OZEEnergyProduction: {
465
- type: string;
466
- properties: {
467
- solarEnergyPhotovoltaic: {
468
- type: string[];
469
- };
470
- solarEnergyPhotothermal: {
471
- type: string[];
472
- };
473
- integratedTurbinesWindEnergy: {
474
- type: string[];
475
- };
476
- heatPump: {
477
- type: string[];
478
- };
479
- };
480
- required: string[];
481
- additionalProperties: boolean;
482
- };
483
- WasteAndEmissions: {
484
- type: string;
485
- properties: {
486
- solidWasteProduction: {
487
- type: string[];
488
- };
489
- tiedCo2emissions: {
490
- type: string[];
491
- };
492
- soxEmissions: {
493
- type: string[];
494
- };
495
- operatingCo2emissions: {
496
- type: string[];
497
- };
498
- };
499
- required: string[];
500
- additionalProperties: boolean;
501
- };
502
- Link: {
503
- type: string;
504
- };
505
- };
506
- required: readonly ["Id", "Name", "Description", "BuildingAddressCode", "Label", "CurrentNote", "MainUse", "SecondaryUse", "YearOfConstruction", "MethodOfProtection", "BuiltUpArea", "HeatedBuldingVolume", "StudentsCount", "EmployeesCount", "ClassroomsCount", "BedsCount", "ENOId", "CSUCode", "KUCode", "AllotmentNumber", "RegistrationUnit", "GasConsumptionNormatives", "HeatConsumptionNormatives", "WaterConsumptionNormatives", "ElectricityConsumptionNormativesPerPerson", "ElectricityConsumptionNormatives", "EnergeticManagement", "OpeningHours", "WeekendOpeningHours", "Latitude", "Longitude", "Address", "PENB", "EnergyAudits", "BuildingEnvelope", "FuelAndEnergy", "TechnicalEquipment", "OZEEnergyProduction", "WasteAndEmissions", "Link"];
507
- additionalProperties: boolean;
508
- };
509
- };
510
- name: string;
511
- outputJsonSchema: {
512
- type: string;
513
- items: {
514
- type: string;
515
- properties: {
516
- id: {
517
- type: string;
518
- };
519
- description: {
520
- type: string;
521
- };
522
- building_address_code: {
523
- type: string;
524
- };
525
- building_label: {
526
- type: string;
527
- };
528
- current_note: {
529
- type: string;
530
- };
531
- main_use: {
532
- type: string;
533
- };
534
- secondary_use: {
535
- type: string;
536
- };
537
- year_of_construction: {
538
- type: string;
539
- };
540
- method_of_protection: {
541
- type: string;
542
- };
543
- built_up_area: {
544
- type: string;
545
- };
546
- heated_bulding_volume: {
547
- type: string;
548
- };
549
- students_count: {
550
- type: string;
551
- };
552
- employees_count: {
553
- type: string;
554
- };
555
- classrooms_count: {
556
- type: string;
557
- };
558
- beds_count: {
559
- type: string;
560
- };
561
- eno_id: {
562
- type: string;
563
- };
564
- csu_code: {
565
- type: string;
566
- };
567
- ku_code: {
568
- type: string;
569
- };
570
- allotment_number: {
571
- type: string;
572
- };
573
- registration_unit: {
574
- type: string;
575
- };
576
- gas_consumption_normatives: {
577
- type: string;
578
- };
579
- heat_consumption_normatives: {
580
- type: string;
581
- };
582
- water_consumption_normatives: {
583
- type: string;
584
- };
585
- electricity_consumption_normatives_per_person: {
586
- type: string;
587
- };
588
- electricity_consumption_normatives: {
589
- type: string;
590
- };
591
- energetic_management: {
592
- type: string;
593
- };
594
- opening_hours: {
595
- type: string;
596
- };
597
- weekend_opening_hours: {
598
- type: string;
599
- };
600
- latitude: {
601
- type: string;
602
- };
603
- longitude: {
604
- type: string;
605
- };
606
- address_street: {
607
- type: string;
608
- };
609
- address_house_number: {
610
- type: string;
611
- };
612
- address_city: {
613
- type: string;
614
- };
615
- address_country: {
616
- type: string;
617
- };
618
- address_mail: {
619
- type: string;
620
- };
621
- address_phone: {
622
- type: string;
623
- };
624
- address_web_address: {
625
- type: string;
626
- };
627
- penb_penbnumber: {
628
- type: string;
629
- };
630
- penb_issue_date: {
631
- type: string;
632
- };
633
- penb_total_building_envelope_area: {
634
- type: string;
635
- };
636
- penb_volume_factor_of_avshape: {
637
- type: string;
638
- };
639
- penb_total_energy_reference_area: {
640
- type: string;
641
- };
642
- penb_total_provided_energy: {
643
- type: string;
644
- };
645
- penb_total_provided_energy_category: {
646
- type: string;
647
- };
648
- penb_primary_non_renewable_energy: {
649
- type: string;
650
- };
651
- penb_primary_non_renewable_energy_category: {
652
- type: string;
653
- };
654
- penb_building_envelope: {
655
- type: string;
656
- };
657
- penb_building_envelope_category: {
658
- type: string;
659
- };
660
- penb_heating: {
661
- type: string;
662
- };
663
- penb_heating_category: {
664
- type: string;
665
- };
666
- penb_cooling: {
667
- type: string;
668
- };
669
- penb_cooling_category: {
670
- type: string;
671
- };
672
- penb_ventilation: {
673
- type: string;
674
- };
675
- penb_ventilation_category: {
676
- type: string;
677
- };
678
- penb_humidity_adjustment: {
679
- type: string;
680
- };
681
- penb_humidity_adjustment_category: {
682
- type: string;
683
- };
684
- penb_warm_water: {
685
- type: string;
686
- };
687
- penb_warm_water_category: {
688
- type: string;
689
- };
690
- penb_lighting: {
691
- type: string;
692
- };
693
- penb_lighting_category: {
694
- type: string;
695
- };
696
- energy_audits_energy_audit: {
697
- type: string;
698
- };
699
- energy_audits_earegistration_number: {
700
- type: string;
701
- };
702
- energy_audits_created_at: {
703
- type: string;
704
- };
705
- building_envelope_side_wall_prevailing_construction: {
706
- type: string;
707
- };
708
- building_envelope_side_wall_area: {
709
- type: string;
710
- };
711
- building_envelope_side_wall_heat_insulation: {
712
- type: string;
713
- };
714
- building_envelope_side_wall_year_of_adjustment: {
715
- type: string;
716
- };
717
- building_envelope_side_wall_technical_condition: {
718
- type: string;
719
- };
720
- building_envelope_filling_of_hole_construction: {
721
- type: string;
722
- };
723
- building_envelope_filling_of_hole_area: {
724
- type: string;
725
- };
726
- building_envelope_filling_of_hole_year_of_adjustment: {
727
- type: string;
728
- };
729
- building_envelope_filling_of_hole_technical_condition: {
730
- type: string;
731
- };
732
- building_envelope_roof_construction: {
733
- type: string;
734
- };
735
- building_envelope_roof_area: {
736
- type: string;
737
- };
738
- building_envelope_roof_thermal_insulation: {
739
- type: string;
740
- };
741
- building_envelope_roof_year_of_adjustment: {
742
- type: string;
743
- };
744
- building_envelope_roof_technical_condition: {
745
- type: string;
746
- };
747
- building_envelope_floor_of_the_lowest_heated_floor_construction: {
748
- type: string;
749
- };
750
- building_envelope_floor_of_the_lowest_heated_floor_area: {
751
- type: string;
752
- };
753
- floor_of_the_lowest_heated_floor_thermal_insulation: {
754
- type: string;
755
- };
756
- building_envelope_floor_of_the_lowest_heated_floor_year_of_adjustment: {
757
- type: string;
758
- };
759
- floor_of_the_lowest_heated_floor_technical_condition: {
760
- type: string;
761
- };
762
- fuel_and_energy_coal: {
763
- type: string;
764
- };
765
- fuel_and_energy_gas: {
766
- type: string;
767
- };
768
- fuel_and_energy_electricity: {
769
- type: string;
770
- };
771
- fuel_and_energy_czt: {
772
- type: string;
773
- };
774
- fuel_and_energy_oze: {
775
- type: string;
776
- };
777
- fuel_and_energy_other: {
778
- type: string;
779
- };
780
- technical_equipment_heating_main_source_of_heat: {
781
- type: string;
782
- };
783
- technical_equipment_heating_heat_percentage: {
784
- type: string;
785
- };
786
- technical_equipment_heating_secondary_source_of_heat: {
787
- type: string;
788
- };
789
- technical_equipment_heating_heating_system: {
790
- type: string;
791
- };
792
- technical_equipment_heating_year: {
793
- type: string;
794
- };
795
- technical_equipment_heating_technical_condition: {
796
- type: string;
797
- };
798
- technical_equipment_cooling_cooling_system: {
799
- type: string;
800
- };
801
- technical_equipment_cooling_cooling_area_percentage: {
802
- type: string;
803
- };
804
- technical_equipment_cooling_year: {
805
- type: string;
806
- };
807
- technical_equipment_cooling_technical_condition: {
808
- type: string;
809
- };
810
- technical_equipment_ventilation_ventilation: {
811
- type: string;
812
- };
813
- technical_equipment_ventilation_year: {
814
- type: string;
815
- };
816
- technical_equipment_ventilation_technical_condition: {
817
- type: string;
818
- };
819
- technical_equipment_humidity_adjustment_humidity_adjustment: {
820
- type: string;
821
- };
822
- technical_equipment_humidity_adjustment_year: {
823
- type: string;
824
- };
825
- technical_equipment_humidity_adjustment_technical_condition: {
826
- type: string;
827
- };
828
- technical_equipment_hot_water_predominant_way_of_heating_tv: {
829
- type: string;
830
- };
831
- technical_equipment_hot_water_hot_water_source: {
832
- type: string;
833
- };
834
- technical_equipment_hot_water_year: {
835
- type: string;
836
- };
837
- technical_equipment_hot_water_technical_condition: {
838
- type: string;
839
- };
840
- technical_equipment_lighting_lighting: {
841
- type: string;
842
- };
843
- technical_equipment_lighting_year: {
844
- type: string;
845
- };
846
- technical_equipment_lighting_technical_condition: {
847
- type: string;
848
- };
849
- technical_equipment_lighting_other_technological_elements: {
850
- type: string;
851
- };
852
- technical_equipment_lighting_measurement_method: {
853
- type: string;
854
- };
855
- oze_energy_production_solar_energy_photovoltaic: {
856
- type: string;
857
- };
858
- oze_energy_production_solar_energy_photothermal: {
859
- type: string;
860
- };
861
- oze_energy_production_integrated_turbines_wind_energy: {
862
- type: string;
863
- };
864
- oze_energy_production_heat_pump: {
865
- type: string;
866
- };
867
- waste_and_emissions_solid_waste_production: {
868
- type: string;
869
- };
870
- waste_and_emissions_tied_co2_emissions: {
871
- type: string;
872
- };
873
- waste_and_emissions_sox_emissions: {
874
- type: string;
875
- };
876
- waste_and_emissions_operating_co_2emissions: {
877
- type: string;
878
- };
879
- link: {
880
- type: string;
881
- };
882
- };
883
- required: readonly ["id", "building_name", "description", "building_address_code", "building_label", "current_note", "main_use", "secondary_use", "year_of_construction", "method_of_protection", "built_up_area", "heated_bulding_volume", "students_count", "employees_count", "classrooms_count", "beds_count", "eno_id", "csu_code", "ku_code", "allotment_number", "registration_unit", "gas_consumption_normatives", "heat_consumption_normatives", "water_consumption_normatives", "electricity_consumption_normatives_per_person", "electricity_consumption_normatives", "energetic_management", "opening_hours", "weekend_opening_hours", "latitude", "longitude", "address_street", "address_house_number", "address_city", "address_country", "address_mail", "address_phone", "address_web_address", "penb_penbnumber", "penb_issue_date", "penb_total_building_envelope_area", "penb_volume_factor_of_avshape", "penb_total_energy_reference_area", "penb_total_provided_energy", "penb_total_provided_energy_category", "penb_primary_non_renewable_energy", "penb_primary_non_renewable_energy_category", "penb_building_envelope", "penb_building_envelope_category", "penb_heating", "penb_heating_category", "penb_cooling", "penb_cooling_category", "penb_ventilation", "penb_ventilation_category", "penb_humidity_adjustment", "penb_humidity_adjustment_category", "penb_warm_water", "penb_warm_water_category", "penb_lighting", "penb_lighting_category", "energy_audits_energy_audit", "energy_audits_earegistration_number", "energy_audits_created_at", "building_envelope_side_wall_prevailing_construction", "building_envelope_side_wall_area", "building_envelope_side_wall_heat_insulation", "building_envelope_side_wall_year_of_adjustment", "building_envelope_side_wall_technical_condition", "building_envelope_filling_of_hole_construction", "building_envelope_filling_of_hole_area", "building_envelope_filling_of_hole_year_of_adjustment", "building_envelope_filling_of_hole_technical_condition", "building_envelope_roof_construction", "building_envelope_roof_area", "building_envelope_roof_thermal_insulation", "building_envelope_roof_year_of_adjustment", "building_envelope_roof_technical_condition", "building_envelope_floor_of_the_lowest_heated_floor_construction", "building_envelope_floor_of_the_lowest_heated_floor_area", "floor_of_the_lowest_heated_floor_thermal_insulation", "building_envelope_floor_of_the_lowest_heated_floor_year_of_adjustment", "floor_of_the_lowest_heated_floor_technical_condition", "fuel_and_energy_coal", "fuel_and_energy_gas", "fuel_and_energy_electricity", "fuel_and_energy_czt", "fuel_and_energy_oze", "fuel_and_energy_other", "technical_equipment_heating_main_source_of_heat", "technical_equipment_heating_heat_percentage", "technical_equipment_heating_secondary_source_of_heat", "technical_equipment_heating_heating_system", "technical_equipment_heating_year", "technical_equipment_heating_technical_condition", "technical_equipment_cooling_cooling_system", "technical_equipment_cooling_cooling_area_percentage", "technical_equipment_cooling_year", "technical_equipment_cooling_technical_condition", "technical_equipment_ventilation_ventilation", "technical_equipment_ventilation_year", "technical_equipment_ventilation_technical_condition", "technical_equipment_humidity_adjustment_humidity_adjustment", "technical_equipment_humidity_adjustment_year", "technical_equipment_humidity_adjustment_technical_condition", "technical_equipment_hot_water_predominant_way_of_heating_tv", "technical_equipment_hot_water_hot_water_source", "technical_equipment_hot_water_year", "technical_equipment_hot_water_technical_condition", "technical_equipment_lighting_lighting", "technical_equipment_lighting_year", "technical_equipment_lighting_technical_condition", "technical_equipment_lighting_other_technological_elements", "technical_equipment_lighting_measurement_method", "oze_energy_production_solar_energy_photovoltaic", "oze_energy_production_solar_energy_photothermal", "oze_energy_production_integrated_turbines_wind_energy", "oze_energy_production_heat_pump", "waste_and_emissions_solid_waste_production", "waste_and_emissions_tied_co2_emissions", "waste_and_emissions_sox_emissions", "waste_and_emissions_operating_co_2emissions", "link"];
884
- additionalProperties: boolean;
885
- };
886
- };
887
- outputSequelizeAttributes: ModelAttributes<any, any>;
888
- pgTableName: string;
889
- };
890
- consumption: {
891
- datasourceJsonSchema: {
892
- type: string;
893
- items: {
894
- type: string;
895
- properties: {
896
- timeUtc: {
897
- type: string;
898
- };
899
- value: {
900
- type: string;
901
- };
902
- addr: {
903
- type: string[];
904
- };
905
- var: {
906
- type: string[];
907
- };
908
- type: {
909
- type: string[];
910
- };
911
- commodity: {
912
- type: string[];
913
- };
914
- unit: {
915
- type: string[];
916
- };
917
- meter: {
918
- type: string[];
919
- };
920
- };
921
- required: readonly ["timeUtc", "value", "addr", "var", "type", "commodity", "unit", "meter"];
922
- additionalProperties: boolean;
923
- };
924
- };
925
- name: string;
926
- outputJsonSchema: {
927
- type: string;
928
- items: {
929
- type: string;
930
- properties: {
931
- time_utc: {
932
- type: string;
933
- };
934
- value: {
935
- type: string;
936
- };
937
- addr: {
938
- type: string;
939
- };
940
- var: {
941
- type: string;
942
- };
943
- type: {
944
- type: string;
945
- };
946
- commodity: {
947
- type: string;
948
- };
949
- unit: {
950
- type: string;
951
- };
952
- meter: {
953
- type: string;
954
- };
955
- };
956
- required: readonly ["time_utc", "value", "addr", "var", "type", "commodity", "unit", "meter"];
957
- additionalProperties: boolean;
958
- };
959
- };
960
- outputSequelizeAttributes: ModelAttributes<any, any>;
961
- pgTableName: string;
962
- };
963
- devices: {
964
- datasourceJsonSchema: {
965
- type: string;
966
- items: {
967
- type: string;
968
- properties: {
969
- id: {
970
- type: string;
971
- };
972
- addr: {
973
- type: string[];
974
- };
975
- description: {
976
- type: string[];
977
- };
978
- meterNumber: {
979
- type: string[];
980
- };
981
- meterIndex: {
982
- type: string[];
983
- };
984
- locationNumber: {
985
- type: string[];
986
- };
987
- locationDescription: {
988
- type: string[];
989
- };
990
- includeInEvaluation: {
991
- type: string[];
992
- };
993
- meterType: {
994
- type: string[];
995
- };
996
- category: {
997
- type: string[];
998
- };
999
- unit: {
1000
- type: string[];
1001
- };
1002
- replacedMeterId: {
1003
- type: string[];
1004
- };
1005
- deleted: {
1006
- type: string[];
1007
- };
1008
- buildingId: {
1009
- type: string;
1010
- };
1011
- };
1012
- required: readonly ["id", "addr", "description", "meterNumber", "meterIndex", "locationNumber", "locationDescription", "includeInEvaluation", "meterType", "category", "unit", "replacedMeterId", "deleted", "buildingId"];
1013
- additionalProperties: boolean;
1014
- };
1015
- };
1016
- name: string;
1017
- outputJsonSchema: {
1018
- type: string;
1019
- items: {
1020
- type: string;
1021
- properties: {
1022
- id: {
1023
- type: string;
1024
- };
1025
- addr: {
1026
- type: string;
1027
- };
1028
- description: {
1029
- type: string;
1030
- };
1031
- meter_number: {
1032
- type: string;
1033
- };
1034
- meter_index: {
1035
- type: string;
1036
- };
1037
- location_number: {
1038
- type: string;
1039
- };
1040
- location_description: {
1041
- type: string;
1042
- };
1043
- include_in_evaluation: {
1044
- type: string;
1045
- };
1046
- meter_type: {
1047
- type: string;
1048
- };
1049
- category: {
1050
- type: string;
1051
- };
1052
- unit: {
1053
- type: string;
1054
- };
1055
- replaced_meter_id: {
1056
- type: string;
1057
- };
1058
- deleted: {
1059
- type: string;
1060
- };
1061
- building_id: {
1062
- type: string;
1063
- };
1064
- };
1065
- required: readonly ["id", "addr", "description", "meter_number", "meter_index", "location_number", "location_description", "include_in_evaluation", "meter_type", "category", "unit", "replaced_meter_id", "deleted", "building_id"];
1066
- additionalProperties: boolean;
1067
- };
1068
- };
1069
- outputSequelizeAttributes: ModelAttributes<any, any>;
1070
- pgTableName: string;
1071
- };
1072
- };
1073
- declare namespace EnergeticsEnesaTypes {
1074
- namespace Buildings {
1075
- type InputElement = Element<typeof EnergeticsEnesa.buildings.datasourceJsonSchema.items.required[number]>;
1076
- type OutputElement = Element<typeof EnergeticsEnesa.buildings.outputJsonSchema.items.required[number]>;
1077
- }
1078
- namespace Consumption {
1079
- type InputElement = Element<typeof EnergeticsEnesa.consumption.datasourceJsonSchema.items.required[number]>;
1080
- type OutputElement = Element<typeof EnergeticsEnesa.consumption.outputJsonSchema.items.required[number]>;
1081
- }
1082
- namespace Devices {
1083
- type InputElement = Element<typeof EnergeticsEnesa.devices.datasourceJsonSchema.items.required[number]>;
1084
- type OutputElement = Element<typeof EnergeticsEnesa.devices.outputJsonSchema.items.required[number]>;
1085
- }
1086
- }
1087
- export { EnergeticsEnesa, EnergeticsEnesaTypes };