@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,356 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.oictBuildingsJsonSchema = void 0;
|
|
4
|
+
exports.oictBuildingsJsonSchema = {
|
|
5
|
+
type: "array",
|
|
6
|
+
items: {
|
|
7
|
+
type: "object",
|
|
8
|
+
properties: {
|
|
9
|
+
id: { type: "integer" },
|
|
10
|
+
name: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
11
|
+
description: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
12
|
+
buildingAddressCode: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
13
|
+
label: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
14
|
+
currentNote: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
15
|
+
mainUse: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
16
|
+
secondaryUse: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
17
|
+
yearOfConstruction: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
18
|
+
methodOfProtection: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
19
|
+
builtUpArea: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
20
|
+
heatedBuldingVolume: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
21
|
+
studentsCount: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
22
|
+
employeesCount: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
23
|
+
classroomsCount: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
24
|
+
bedsCount: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
25
|
+
enoId: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
26
|
+
csuCode: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
27
|
+
kuCode: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
28
|
+
allotmentNumber: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
29
|
+
registrationUnit: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
30
|
+
gasConsumptionNormatives: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
31
|
+
heatConsumptionNormatives: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
32
|
+
waterConsumptionNormatives: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
33
|
+
electricityConsumptionNormativesPerPerson: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
34
|
+
electricityConsumptionNormatives: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
35
|
+
energeticManagement: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
36
|
+
openingHours: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
37
|
+
weekendOpeningHours: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
38
|
+
latitude: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
39
|
+
longitude: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
40
|
+
address: {
|
|
41
|
+
type: "object",
|
|
42
|
+
properties: {
|
|
43
|
+
street: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
44
|
+
houseNumber: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
45
|
+
city: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
46
|
+
country: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
47
|
+
mail: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
48
|
+
phone: { oneOf: [{ type: "string" }, { type: "integer" }, { type: "null", nullable: true }] },
|
|
49
|
+
webAddress: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
50
|
+
},
|
|
51
|
+
required: ["street", "houseNumber", "city", "country", "mail", "phone", "webAddress"],
|
|
52
|
+
},
|
|
53
|
+
penb: {
|
|
54
|
+
type: "object",
|
|
55
|
+
properties: {
|
|
56
|
+
penbNumber: { oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }] },
|
|
57
|
+
issueDate: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
58
|
+
totalBuildingEnvelopeArea: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
59
|
+
volumeFactorOfAVShape: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
60
|
+
totalEnergyReferenceArea: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
61
|
+
totalProvidedEnergy: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
62
|
+
totalProvidedEnergyCategory: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
63
|
+
primaryNonRenewableEnergy: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
64
|
+
primaryNonRenewableEnergyCategory: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
65
|
+
buildingEnvelope: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
66
|
+
buildingEnvelopeCategory: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
67
|
+
heating: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
68
|
+
heatingCategory: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
69
|
+
cooling: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
70
|
+
coolingCategory: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
71
|
+
ventilation: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
72
|
+
ventilationCategory: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
73
|
+
humidityAdjustment: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
74
|
+
humidityAdjustmentCategory: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
75
|
+
warmWater: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
76
|
+
warmWaterCategory: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
77
|
+
lighting: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
78
|
+
lightingCategory: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
79
|
+
},
|
|
80
|
+
required: [
|
|
81
|
+
"penbNumber",
|
|
82
|
+
"issueDate",
|
|
83
|
+
"totalBuildingEnvelopeArea",
|
|
84
|
+
"volumeFactorOfAVShape",
|
|
85
|
+
"totalEnergyReferenceArea",
|
|
86
|
+
"totalProvidedEnergy",
|
|
87
|
+
"totalProvidedEnergyCategory",
|
|
88
|
+
"primaryNonRenewableEnergy",
|
|
89
|
+
"primaryNonRenewableEnergyCategory",
|
|
90
|
+
"buildingEnvelope",
|
|
91
|
+
"buildingEnvelopeCategory",
|
|
92
|
+
"heating",
|
|
93
|
+
"heatingCategory",
|
|
94
|
+
"cooling",
|
|
95
|
+
"coolingCategory",
|
|
96
|
+
"ventilation",
|
|
97
|
+
"ventilationCategory",
|
|
98
|
+
"humidityAdjustment",
|
|
99
|
+
"humidityAdjustmentCategory",
|
|
100
|
+
"warmWater",
|
|
101
|
+
"warmWaterCategory",
|
|
102
|
+
"lighting",
|
|
103
|
+
"lightingCategory",
|
|
104
|
+
],
|
|
105
|
+
},
|
|
106
|
+
energyAudits: {
|
|
107
|
+
type: "object",
|
|
108
|
+
properties: {
|
|
109
|
+
energyAudit: { oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }] },
|
|
110
|
+
eaRegistrationNumber: { oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }] },
|
|
111
|
+
createdAt: { oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }] },
|
|
112
|
+
},
|
|
113
|
+
required: ["energyAudit", "eaRegistrationNumber", "createdAt"],
|
|
114
|
+
},
|
|
115
|
+
buildingEnvelope: {
|
|
116
|
+
type: "object",
|
|
117
|
+
properties: {
|
|
118
|
+
sideWall: {
|
|
119
|
+
type: "object",
|
|
120
|
+
properties: {
|
|
121
|
+
prevailingConstruction: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
122
|
+
area: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
123
|
+
heatInsulation: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
124
|
+
yearOfAdjustment: {
|
|
125
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
126
|
+
},
|
|
127
|
+
technicalCondition: {
|
|
128
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
129
|
+
},
|
|
130
|
+
},
|
|
131
|
+
required: ["prevailingConstruction", "area", "heatInsulation", "yearOfAdjustment", "technicalCondition"],
|
|
132
|
+
},
|
|
133
|
+
fillingOfHole: {
|
|
134
|
+
type: "object",
|
|
135
|
+
properties: {
|
|
136
|
+
construction: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
137
|
+
area: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
138
|
+
yearOfAdjustment: {
|
|
139
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
140
|
+
},
|
|
141
|
+
technicalCondition: {
|
|
142
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
143
|
+
},
|
|
144
|
+
},
|
|
145
|
+
required: ["construction", "area", "yearOfAdjustment", "technicalCondition"],
|
|
146
|
+
},
|
|
147
|
+
roof: {
|
|
148
|
+
type: "object",
|
|
149
|
+
properties: {
|
|
150
|
+
construction: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
151
|
+
area: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
152
|
+
thermalInsulation: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
153
|
+
yearOfAdjustment: {
|
|
154
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
155
|
+
},
|
|
156
|
+
technicalCondition: {
|
|
157
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
158
|
+
},
|
|
159
|
+
},
|
|
160
|
+
required: ["construction", "area", "thermalInsulation", "yearOfAdjustment", "technicalCondition"],
|
|
161
|
+
},
|
|
162
|
+
floorOfTheLowestHeatedFloor: {
|
|
163
|
+
type: "object",
|
|
164
|
+
properties: {
|
|
165
|
+
construction: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
166
|
+
area: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
167
|
+
thermalInsulation: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
168
|
+
yearOfAdjustment: {
|
|
169
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
170
|
+
},
|
|
171
|
+
technicalCondition: {
|
|
172
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
173
|
+
},
|
|
174
|
+
},
|
|
175
|
+
required: ["construction", "area", "thermalInsulation", "yearOfAdjustment", "technicalCondition"],
|
|
176
|
+
},
|
|
177
|
+
},
|
|
178
|
+
required: ["sideWall", "fillingOfHole", "roof", "floorOfTheLowestHeatedFloor"],
|
|
179
|
+
},
|
|
180
|
+
fuelAndEnergy: {
|
|
181
|
+
type: "object",
|
|
182
|
+
properties: {
|
|
183
|
+
coal: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
184
|
+
gas: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
185
|
+
electricity: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
186
|
+
czt: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
187
|
+
oze: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
188
|
+
other: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
189
|
+
},
|
|
190
|
+
required: ["coal", "gas", "electricity", "czt", "oze", "other"],
|
|
191
|
+
},
|
|
192
|
+
technicalEquipment: {
|
|
193
|
+
type: "object",
|
|
194
|
+
properties: {
|
|
195
|
+
heating: {
|
|
196
|
+
type: "object",
|
|
197
|
+
properties: {
|
|
198
|
+
mainSourceOfHeat: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
199
|
+
heatPercentage: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
200
|
+
secondarySourceOfHeat: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
201
|
+
heatingSystem: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
202
|
+
year: { oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }] },
|
|
203
|
+
technicalCondition: {
|
|
204
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
205
|
+
},
|
|
206
|
+
},
|
|
207
|
+
required: [
|
|
208
|
+
"mainSourceOfHeat",
|
|
209
|
+
"heatPercentage",
|
|
210
|
+
"secondarySourceOfHeat",
|
|
211
|
+
"heatingSystem",
|
|
212
|
+
"year",
|
|
213
|
+
"technicalCondition",
|
|
214
|
+
],
|
|
215
|
+
},
|
|
216
|
+
cooling: {
|
|
217
|
+
type: "object",
|
|
218
|
+
properties: {
|
|
219
|
+
coolingSystem: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
220
|
+
coolingAreaPercentage: {
|
|
221
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
222
|
+
},
|
|
223
|
+
year: { oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }] },
|
|
224
|
+
technicalCondition: {
|
|
225
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
226
|
+
},
|
|
227
|
+
},
|
|
228
|
+
required: ["coolingSystem", "coolingAreaPercentage", "year", "technicalCondition"],
|
|
229
|
+
},
|
|
230
|
+
ventilation: {
|
|
231
|
+
type: "object",
|
|
232
|
+
properties: {
|
|
233
|
+
ventilation: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
234
|
+
year: { oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }] },
|
|
235
|
+
technicalCondition: {
|
|
236
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
237
|
+
},
|
|
238
|
+
},
|
|
239
|
+
required: ["ventilation", "year", "technicalCondition"],
|
|
240
|
+
},
|
|
241
|
+
humidityAdjustment: {
|
|
242
|
+
type: "object",
|
|
243
|
+
properties: {
|
|
244
|
+
humidityAdjustment: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
245
|
+
year: { oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }] },
|
|
246
|
+
technicalCondition: {
|
|
247
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
248
|
+
},
|
|
249
|
+
},
|
|
250
|
+
required: ["humidityAdjustment", "year", "technicalCondition"],
|
|
251
|
+
},
|
|
252
|
+
hotWater: {
|
|
253
|
+
type: "object",
|
|
254
|
+
properties: {
|
|
255
|
+
predominantWayOfHeatingTv: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
256
|
+
hotWaterSource: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
257
|
+
year: { oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }] },
|
|
258
|
+
technicalCondition: {
|
|
259
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
260
|
+
},
|
|
261
|
+
},
|
|
262
|
+
required: ["predominantWayOfHeatingTv", "hotWaterSource", "year", "technicalCondition"],
|
|
263
|
+
},
|
|
264
|
+
lighting: {
|
|
265
|
+
type: "object",
|
|
266
|
+
properties: {
|
|
267
|
+
lighting: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
268
|
+
year: { oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }] },
|
|
269
|
+
technicalCondition: {
|
|
270
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
271
|
+
},
|
|
272
|
+
otherTechnologicalElements: {
|
|
273
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
274
|
+
},
|
|
275
|
+
measurementMethod: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
276
|
+
},
|
|
277
|
+
required: ["lighting", "year", "technicalCondition", "otherTechnologicalElements", "measurementMethod"],
|
|
278
|
+
},
|
|
279
|
+
},
|
|
280
|
+
required: ["heating", "cooling", "ventilation", "humidityAdjustment", "hotWater", "lighting"],
|
|
281
|
+
},
|
|
282
|
+
ozeEnergyProduction: {
|
|
283
|
+
type: "object",
|
|
284
|
+
properties: {
|
|
285
|
+
solarEnergyPhotovoltaic: {
|
|
286
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
287
|
+
},
|
|
288
|
+
solarEnergyPhotothermal: {
|
|
289
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
290
|
+
},
|
|
291
|
+
integratedTurbinesWindEnergy: {
|
|
292
|
+
oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }],
|
|
293
|
+
},
|
|
294
|
+
heatPump: { oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }] },
|
|
295
|
+
},
|
|
296
|
+
required: ["solarEnergyPhotovoltaic", "solarEnergyPhotothermal", "integratedTurbinesWindEnergy", "heatPump"],
|
|
297
|
+
},
|
|
298
|
+
wasteAndEmissions: {
|
|
299
|
+
type: "object",
|
|
300
|
+
properties: {
|
|
301
|
+
solidWasteProduction: { oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }] },
|
|
302
|
+
tiedCo2Emissions: { oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }] },
|
|
303
|
+
soxEmissions: { oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }] },
|
|
304
|
+
operatingCo2Emissions: { oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }] },
|
|
305
|
+
},
|
|
306
|
+
required: ["solidWasteProduction", "tiedCo2Emissions", "soxEmissions", "operatingCo2Emissions"],
|
|
307
|
+
},
|
|
308
|
+
link: {
|
|
309
|
+
type: "string",
|
|
310
|
+
},
|
|
311
|
+
},
|
|
312
|
+
required: [
|
|
313
|
+
"id",
|
|
314
|
+
"name",
|
|
315
|
+
"description",
|
|
316
|
+
"buildingAddressCode",
|
|
317
|
+
"label",
|
|
318
|
+
"currentNote",
|
|
319
|
+
"mainUse",
|
|
320
|
+
"secondaryUse",
|
|
321
|
+
"yearOfConstruction",
|
|
322
|
+
"methodOfProtection",
|
|
323
|
+
"builtUpArea",
|
|
324
|
+
"heatedBuldingVolume",
|
|
325
|
+
"studentsCount",
|
|
326
|
+
"employeesCount",
|
|
327
|
+
"classroomsCount",
|
|
328
|
+
"bedsCount",
|
|
329
|
+
"enoId",
|
|
330
|
+
"csuCode",
|
|
331
|
+
"kuCode",
|
|
332
|
+
"allotmentNumber",
|
|
333
|
+
"registrationUnit",
|
|
334
|
+
"gasConsumptionNormatives",
|
|
335
|
+
"heatConsumptionNormatives",
|
|
336
|
+
"waterConsumptionNormatives",
|
|
337
|
+
"electricityConsumptionNormativesPerPerson",
|
|
338
|
+
"electricityConsumptionNormatives",
|
|
339
|
+
"energeticManagement",
|
|
340
|
+
"openingHours",
|
|
341
|
+
"weekendOpeningHours",
|
|
342
|
+
"latitude",
|
|
343
|
+
"longitude",
|
|
344
|
+
"address",
|
|
345
|
+
"penb",
|
|
346
|
+
"energyAudits",
|
|
347
|
+
"buildingEnvelope",
|
|
348
|
+
"fuelAndEnergy",
|
|
349
|
+
"technicalEquipment",
|
|
350
|
+
"ozeEnergyProduction",
|
|
351
|
+
"wasteAndEmissions",
|
|
352
|
+
"link",
|
|
353
|
+
],
|
|
354
|
+
},
|
|
355
|
+
};
|
|
356
|
+
//# sourceMappingURL=OictBuildingsJsonSchema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OictBuildingsJsonSchema.js","sourceRoot":"","sources":["../../../src/schema-definitions/datasources/OictBuildingsJsonSchema.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.oictConsumptionJsonSchema = void 0;
|
|
4
|
+
exports.oictConsumptionJsonSchema = {
|
|
5
|
+
type: "array",
|
|
6
|
+
items: {
|
|
7
|
+
type: "object",
|
|
8
|
+
properties: {
|
|
9
|
+
time: { type: "string" },
|
|
10
|
+
value: { type: "string" },
|
|
11
|
+
addr: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
12
|
+
var: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
13
|
+
type: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
14
|
+
meter: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
15
|
+
},
|
|
16
|
+
required: ["time", "value", "addr", "var", "type", "meter"],
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
//# sourceMappingURL=OictConsumptionJsonSchema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OictConsumptionJsonSchema.js","sourceRoot":"","sources":["../../../src/schema-definitions/datasources/OictConsumptionJsonSchema.ts"],"names":[],"mappings":";;;AAGa,QAAA,yBAAyB,GAA4C;IAC9E,IAAI,EAAE,OAAO;IACb,KAAK,EAAE;QACH,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACR,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YACxB,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YACzB,IAAI,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE;YACvE,GAAG,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE;YACtE,IAAI,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE;YACvE,KAAK,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE;SAC3E;QACD,QAAQ,EAAE,CAAC,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC;KAC9D;CACJ,CAAC"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.oictDevicesJsonSchema = void 0;
|
|
4
|
+
exports.oictDevicesJsonSchema = {
|
|
5
|
+
type: "array",
|
|
6
|
+
items: {
|
|
7
|
+
type: "object",
|
|
8
|
+
properties: {
|
|
9
|
+
id: { type: "integer" },
|
|
10
|
+
addr: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
11
|
+
description: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
12
|
+
meterNumber: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
13
|
+
meterIndex: { oneOf: [{ type: "string" }, { type: "integer" }, { type: "null", nullable: true }] },
|
|
14
|
+
locationNumber: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
15
|
+
locationDescription: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
16
|
+
includeInEvaluation: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
17
|
+
meterType: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
18
|
+
category: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
19
|
+
unit: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
20
|
+
replacedMeterId: { oneOf: [{ type: "string" }, { type: "number" }, { type: "null", nullable: true }] },
|
|
21
|
+
deleted: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
|
|
22
|
+
buildingId: { type: "number" },
|
|
23
|
+
},
|
|
24
|
+
required: [
|
|
25
|
+
"id",
|
|
26
|
+
"addr",
|
|
27
|
+
"description",
|
|
28
|
+
"meterNumber",
|
|
29
|
+
"meterIndex",
|
|
30
|
+
"locationNumber",
|
|
31
|
+
"locationDescription",
|
|
32
|
+
"includeInEvaluation",
|
|
33
|
+
"meterType",
|
|
34
|
+
"category",
|
|
35
|
+
"unit",
|
|
36
|
+
"replacedMeterId",
|
|
37
|
+
"deleted",
|
|
38
|
+
"buildingId",
|
|
39
|
+
],
|
|
40
|
+
},
|
|
41
|
+
};
|
|
42
|
+
//# sourceMappingURL=OictDevicesJsonSchema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OictDevicesJsonSchema.js","sourceRoot":"","sources":["../../../src/schema-definitions/datasources/OictDevicesJsonSchema.ts"],"names":[],"mappings":";;;AAGa,QAAA,qBAAqB,GAAwC;IACtE,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,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE;YACvE,WAAW,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE;YAC9E,WAAW,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE;YAC9E,UAAU,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE;YAClG,cAAc,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE;YACjF,mBAAmB,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE;YACtF,mBAAmB,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE;YACtF,SAAS,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE;YAC5E,QAAQ,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE;YAC3E,IAAI,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE;YACvE,eAAe,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE;YACtG,OAAO,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE;YAC1E,UAAU,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;SACjC;QACD,QAAQ,EAAE;YACN,IAAI;YACJ,MAAM;YACN,aAAa;YACb,aAAa;YACb,YAAY;YACZ,gBAAgB;YAChB,qBAAqB;YACrB,qBAAqB;YACrB,WAAW;YACX,UAAU;YACV,MAAM;YACN,iBAAiB;YACjB,SAAS;YACT,YAAY;SACf;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("./OictBuildingsJsonSchema"), exports);
|
|
18
|
+
__exportStar(require("./OictDevicesJsonSchema"), exports);
|
|
19
|
+
__exportStar(require("./OictConsumptionJsonSchema"), exports);
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/schema-definitions/datasources/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C;AAC1C,0DAAwC;AACxC,8DAA4C"}
|