@golemio/fypr 1.0.1 → 1.0.2-dev.2343920210
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/db/example/00_clear_test_data.sql +7 -7
- package/db/example/01_display_cases.sql +4 -0
- package/db/example/02_information_panels.sql +4 -0
- package/db/example/03_obelisks.sql +4 -0
- package/db/example/04_signposts.sql +2 -0
- package/db/example/05_totems.sql +4 -0
- package/db/migrations/postgresql/20260212140121-init-dbfypr-integration.js +53 -0
- package/db/migrations/postgresql/package.json +3 -0
- package/db/migrations/postgresql/sqls/20260212140121-init-dbfypr-integration-down.sql +9 -0
- package/db/migrations/postgresql/sqls/20260212140121-init-dbfypr-integration-up.sql +242 -0
- package/db/migrations/postgresql/sqls/package.json +3 -0
- package/dist/helpers/errors/ErrorHelper.d.ts +4 -0
- package/dist/helpers/errors/ErrorHelper.js +11 -0
- package/dist/helpers/errors/ErrorHelper.js.map +1 -0
- package/dist/integration-engine/data-sources/AbstractDBFYPRDataSourceFactory.d.ts +11 -0
- package/dist/integration-engine/data-sources/AbstractDBFYPRDataSourceFactory.js +32 -0
- package/dist/integration-engine/data-sources/AbstractDBFYPRDataSourceFactory.js.map +1 -0
- package/dist/integration-engine/data-sources/DBFYPRDisplayCasesDataSourceFactory.d.ts +9 -0
- package/dist/integration-engine/data-sources/DBFYPRDisplayCasesDataSourceFactory.js +36 -0
- package/dist/integration-engine/data-sources/DBFYPRDisplayCasesDataSourceFactory.js.map +1 -0
- package/dist/integration-engine/data-sources/DBFYPRInformationPanelsDataSourceFactory.d.ts +9 -0
- package/dist/integration-engine/data-sources/DBFYPRInformationPanelsDataSourceFactory.js +36 -0
- package/dist/integration-engine/data-sources/DBFYPRInformationPanelsDataSourceFactory.js.map +1 -0
- package/dist/integration-engine/data-sources/DBFYPRObelisksDataSourceFactory.d.ts +9 -0
- package/dist/integration-engine/data-sources/DBFYPRObelisksDataSourceFactory.js +36 -0
- package/dist/integration-engine/data-sources/DBFYPRObelisksDataSourceFactory.js.map +1 -0
- package/dist/integration-engine/data-sources/DBFYPRSignpostsDataSourceFactory.d.ts +9 -0
- package/dist/integration-engine/data-sources/DBFYPRSignpostsDataSourceFactory.js +36 -0
- package/dist/integration-engine/data-sources/DBFYPRSignpostsDataSourceFactory.js.map +1 -0
- package/dist/integration-engine/data-sources/DBFYPRTotemsDataSourceFactory.d.ts +9 -0
- package/dist/integration-engine/data-sources/DBFYPRTotemsDataSourceFactory.js +36 -0
- package/dist/integration-engine/data-sources/DBFYPRTotemsDataSourceFactory.js.map +1 -0
- package/dist/integration-engine/data-sources/protocol-strategies/StrapiPaginatedHTTPProtocolStrategy.d.ts +21 -0
- package/dist/integration-engine/data-sources/protocol-strategies/StrapiPaginatedHTTPProtocolStrategy.js +59 -0
- package/dist/integration-engine/data-sources/protocol-strategies/StrapiPaginatedHTTPProtocolStrategy.js.map +1 -0
- package/dist/integration-engine/helpers/StrapiPaginationHelper.d.ts +10 -0
- package/dist/integration-engine/helpers/StrapiPaginationHelper.js +41 -0
- package/dist/integration-engine/helpers/StrapiPaginationHelper.js.map +1 -0
- package/dist/integration-engine/index.js +2 -3
- package/dist/integration-engine/index.js.map +1 -1
- package/dist/integration-engine/ioc/Di.d.ts +2 -0
- package/dist/integration-engine/ioc/Di.js +63 -0
- package/dist/integration-engine/ioc/Di.js.map +1 -0
- package/dist/integration-engine/ioc/FYPRIEContainerTokens.d.ts +23 -0
- package/dist/integration-engine/ioc/FYPRIEContainerTokens.js +35 -0
- package/dist/integration-engine/ioc/FYPRIEContainerTokens.js.map +1 -0
- package/dist/integration-engine/repositories/AbstractFyprRepository.d.ts +11 -0
- package/dist/integration-engine/repositories/AbstractFyprRepository.js +14 -0
- package/dist/integration-engine/repositories/AbstractFyprRepository.js.map +1 -0
- package/dist/integration-engine/repositories/DisplayCaseRepository.d.ts +14 -0
- package/dist/integration-engine/repositories/DisplayCaseRepository.js +58 -0
- package/dist/integration-engine/repositories/DisplayCaseRepository.js.map +1 -0
- package/dist/integration-engine/repositories/InformationPanelRepository.d.ts +14 -0
- package/dist/integration-engine/repositories/InformationPanelRepository.js +58 -0
- package/dist/integration-engine/repositories/InformationPanelRepository.js.map +1 -0
- package/dist/integration-engine/repositories/ObeliskRepository.d.ts +14 -0
- package/dist/integration-engine/repositories/ObeliskRepository.js +58 -0
- package/dist/integration-engine/repositories/ObeliskRepository.js.map +1 -0
- package/dist/integration-engine/repositories/SignpostRepository.d.ts +14 -0
- package/dist/integration-engine/repositories/SignpostRepository.js +58 -0
- package/dist/integration-engine/repositories/SignpostRepository.js.map +1 -0
- package/dist/integration-engine/repositories/TotemRepository.d.ts +14 -0
- package/dist/integration-engine/repositories/TotemRepository.js +58 -0
- package/dist/integration-engine/repositories/TotemRepository.js.map +1 -0
- package/dist/integration-engine/transformations/AbstractElementTransformation.d.ts +7 -0
- package/dist/integration-engine/transformations/AbstractElementTransformation.js +36 -0
- package/dist/integration-engine/transformations/AbstractElementTransformation.js.map +1 -0
- package/dist/integration-engine/transformations/DisplayCasesTransformation.d.ts +10 -0
- package/dist/integration-engine/transformations/DisplayCasesTransformation.js +46 -0
- package/dist/integration-engine/transformations/DisplayCasesTransformation.js.map +1 -0
- package/dist/integration-engine/transformations/InformationPanelsTransformation.d.ts +10 -0
- package/dist/integration-engine/transformations/InformationPanelsTransformation.js +102 -0
- package/dist/integration-engine/transformations/InformationPanelsTransformation.js.map +1 -0
- package/dist/integration-engine/transformations/ObelisksTransformation.d.ts +10 -0
- package/dist/integration-engine/transformations/ObelisksTransformation.js +41 -0
- package/dist/integration-engine/transformations/ObelisksTransformation.js.map +1 -0
- package/dist/integration-engine/transformations/SignpostsTransformation.d.ts +10 -0
- package/dist/integration-engine/transformations/SignpostsTransformation.js +43 -0
- package/dist/integration-engine/transformations/SignpostsTransformation.js.map +1 -0
- package/dist/integration-engine/transformations/TotemsTransformation.d.ts +10 -0
- package/dist/integration-engine/transformations/TotemsTransformation.js +78 -0
- package/dist/integration-engine/transformations/TotemsTransformation.js.map +1 -0
- package/dist/integration-engine/workers/FYPRWorker.d.ts +8 -0
- package/dist/integration-engine/workers/FYPRWorker.js +33 -0
- package/dist/integration-engine/workers/FYPRWorker.js.map +1 -0
- package/dist/integration-engine/workers/constants.d.ts +1 -0
- package/dist/integration-engine/workers/constants.js +5 -0
- package/dist/integration-engine/workers/constants.js.map +1 -0
- package/dist/integration-engine/workers/tasks/AbstractUpdateElementsTask.d.ts +12 -0
- package/dist/integration-engine/workers/tasks/AbstractUpdateElementsTask.js +26 -0
- package/dist/integration-engine/workers/tasks/AbstractUpdateElementsTask.js.map +1 -0
- package/dist/integration-engine/workers/tasks/FetchDBFYPRTask.d.ts +21 -0
- package/dist/integration-engine/workers/tasks/FetchDBFYPRTask.js +96 -0
- package/dist/integration-engine/workers/tasks/FetchDBFYPRTask.js.map +1 -0
- package/dist/integration-engine/workers/tasks/UpdateDisplayCasesTask.d.ts +11 -0
- package/dist/integration-engine/workers/tasks/UpdateDisplayCasesTask.js +38 -0
- package/dist/integration-engine/workers/tasks/UpdateDisplayCasesTask.js.map +1 -0
- package/dist/integration-engine/workers/tasks/UpdateInformationPanelsTask.d.ts +11 -0
- package/dist/integration-engine/workers/tasks/UpdateInformationPanelsTask.js +38 -0
- package/dist/integration-engine/workers/tasks/UpdateInformationPanelsTask.js.map +1 -0
- package/dist/integration-engine/workers/tasks/UpdateObelisksTask.d.ts +11 -0
- package/dist/integration-engine/workers/tasks/UpdateObelisksTask.js +38 -0
- package/dist/integration-engine/workers/tasks/UpdateObelisksTask.js.map +1 -0
- package/dist/integration-engine/workers/tasks/UpdateSignpostsTask.d.ts +11 -0
- package/dist/integration-engine/workers/tasks/UpdateSignpostsTask.js +38 -0
- package/dist/integration-engine/workers/tasks/UpdateSignpostsTask.js.map +1 -0
- package/dist/integration-engine/workers/tasks/UpdateTotemsTask.d.ts +11 -0
- package/dist/integration-engine/workers/tasks/UpdateTotemsTask.js +38 -0
- package/dist/integration-engine/workers/tasks/UpdateTotemsTask.js.map +1 -0
- package/dist/schema-definitions/const.d.ts +1 -0
- package/dist/schema-definitions/const.js +5 -0
- package/dist/schema-definitions/const.js.map +1 -0
- package/dist/schema-definitions/data-sources/DBFYPRDisplayCasesJSONSchema.d.ts +3 -0
- package/dist/schema-definitions/data-sources/DBFYPRDisplayCasesJSONSchema.js +97 -0
- package/dist/schema-definitions/data-sources/DBFYPRDisplayCasesJSONSchema.js.map +1 -0
- package/dist/schema-definitions/data-sources/DBFYPRElementsJSONSchema.d.ts +3 -0
- package/dist/schema-definitions/data-sources/DBFYPRElementsJSONSchema.js +64 -0
- package/dist/schema-definitions/data-sources/DBFYPRElementsJSONSchema.js.map +1 -0
- package/dist/schema-definitions/data-sources/DBFYPRInformationPanelsJSONSchema.d.ts +3 -0
- package/dist/schema-definitions/data-sources/DBFYPRInformationPanelsJSONSchema.js +307 -0
- package/dist/schema-definitions/data-sources/DBFYPRInformationPanelsJSONSchema.js.map +1 -0
- package/dist/schema-definitions/data-sources/DBFYPRObelisksJSONSchema.d.ts +3 -0
- package/dist/schema-definitions/data-sources/DBFYPRObelisksJSONSchema.js +79 -0
- package/dist/schema-definitions/data-sources/DBFYPRObelisksJSONSchema.js.map +1 -0
- package/dist/schema-definitions/data-sources/DBFYPRSignpostsJSONSchema.d.ts +3 -0
- package/dist/schema-definitions/data-sources/DBFYPRSignpostsJSONSchema.js +85 -0
- package/dist/schema-definitions/data-sources/DBFYPRSignpostsJSONSchema.js.map +1 -0
- package/dist/schema-definitions/data-sources/DBFYPRTotemsJSONSchema.d.ts +3 -0
- package/dist/schema-definitions/data-sources/DBFYPRTotemsJSONSchema.js +229 -0
- package/dist/schema-definitions/data-sources/DBFYPRTotemsJSONSchema.js.map +1 -0
- package/dist/schema-definitions/data-sources/interfaces/IDBFYPRDisplayCase.d.ts +22 -0
- package/dist/schema-definitions/data-sources/interfaces/IDBFYPRDisplayCase.js +3 -0
- package/dist/schema-definitions/data-sources/interfaces/IDBFYPRDisplayCase.js.map +1 -0
- package/dist/schema-definitions/data-sources/interfaces/IDBFYPRElement.d.ts +21 -0
- package/dist/schema-definitions/data-sources/interfaces/IDBFYPRElement.js +3 -0
- package/dist/schema-definitions/data-sources/interfaces/IDBFYPRElement.js.map +1 -0
- package/dist/schema-definitions/data-sources/interfaces/IDBFYPRInformationPanel.d.ts +78 -0
- package/dist/schema-definitions/data-sources/interfaces/IDBFYPRInformationPanel.js +3 -0
- package/dist/schema-definitions/data-sources/interfaces/IDBFYPRInformationPanel.js.map +1 -0
- package/dist/schema-definitions/data-sources/interfaces/IDBFYPRObelisk.d.ts +17 -0
- package/dist/schema-definitions/data-sources/interfaces/IDBFYPRObelisk.js +3 -0
- package/dist/schema-definitions/data-sources/interfaces/IDBFYPRObelisk.js.map +1 -0
- package/dist/schema-definitions/data-sources/interfaces/IDBFYPRSignpost.d.ts +19 -0
- package/dist/schema-definitions/data-sources/interfaces/IDBFYPRSignpost.js +3 -0
- package/dist/schema-definitions/data-sources/interfaces/IDBFYPRSignpost.js.map +1 -0
- package/dist/schema-definitions/data-sources/interfaces/IDBFYPRTotem.d.ts +54 -0
- package/dist/schema-definitions/data-sources/interfaces/IDBFYPRTotem.js +3 -0
- package/dist/schema-definitions/data-sources/interfaces/IDBFYPRTotem.js.map +1 -0
- package/dist/schema-definitions/index.js +0 -1
- package/dist/schema-definitions/index.js.map +1 -1
- package/dist/schema-definitions/models/AbstractElementModel.d.ts +155 -0
- package/dist/schema-definitions/models/AbstractElementModel.js +104 -0
- package/dist/schema-definitions/models/AbstractElementModel.js.map +1 -0
- package/dist/schema-definitions/models/DisplayCaseModel.d.ts +28 -0
- package/dist/schema-definitions/models/DisplayCaseModel.js +103 -0
- package/dist/schema-definitions/models/DisplayCaseModel.js.map +1 -0
- package/dist/schema-definitions/models/InformationPanelModel.d.ts +84 -0
- package/dist/schema-definitions/models/InformationPanelModel.js +360 -0
- package/dist/schema-definitions/models/InformationPanelModel.js.map +1 -0
- package/dist/schema-definitions/models/ObeliskModel.d.ts +23 -0
- package/dist/schema-definitions/models/ObeliskModel.js +80 -0
- package/dist/schema-definitions/models/ObeliskModel.js.map +1 -0
- package/dist/schema-definitions/models/SignpostModel.d.ts +25 -0
- package/dist/schema-definitions/models/SignpostModel.js +88 -0
- package/dist/schema-definitions/models/SignpostModel.js.map +1 -0
- package/dist/schema-definitions/models/TotemModel.d.ts +60 -0
- package/dist/schema-definitions/models/TotemModel.js +251 -0
- package/dist/schema-definitions/models/TotemModel.js.map +1 -0
- package/dist/schema-definitions/models/interfaces/IDisplayCase.d.ts +22 -0
- package/dist/schema-definitions/models/interfaces/IDisplayCase.js +3 -0
- package/dist/schema-definitions/models/interfaces/IDisplayCase.js.map +1 -0
- package/dist/schema-definitions/models/interfaces/IElement.d.ts +19 -0
- package/dist/schema-definitions/models/interfaces/IElement.js +3 -0
- package/dist/schema-definitions/models/interfaces/IElement.js.map +1 -0
- package/dist/schema-definitions/models/interfaces/IInformationPanel.d.ts +78 -0
- package/dist/schema-definitions/models/interfaces/IInformationPanel.js +3 -0
- package/dist/schema-definitions/models/interfaces/IInformationPanel.js.map +1 -0
- package/dist/schema-definitions/models/interfaces/IObelisk.d.ts +17 -0
- package/dist/schema-definitions/models/interfaces/IObelisk.js +3 -0
- package/dist/schema-definitions/models/interfaces/IObelisk.js.map +1 -0
- package/dist/schema-definitions/models/interfaces/ISignpost.d.ts +19 -0
- package/dist/schema-definitions/models/interfaces/ISignpost.js +3 -0
- package/dist/schema-definitions/models/interfaces/ISignpost.js.map +1 -0
- package/dist/schema-definitions/models/interfaces/ITotem.d.ts +54 -0
- package/dist/schema-definitions/models/interfaces/ITotem.js +3 -0
- package/dist/schema-definitions/models/interfaces/ITotem.js.map +1 -0
- package/docs/asyncapi.yaml +823 -3
- package/docs/implementation_documentation.md +162 -39
- package/docs/translations.md +212 -0
- package/package.json +7 -5
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.dbfyprSignpostsJSONSchema = void 0;
|
|
4
|
+
const DBFYPRElementsJSONSchema_1 = require("./DBFYPRElementsJSONSchema");
|
|
5
|
+
const dbfyprSignpostsJSONSchemaAux = {
|
|
6
|
+
type: "array",
|
|
7
|
+
items: {
|
|
8
|
+
type: "object",
|
|
9
|
+
properties: {
|
|
10
|
+
ulice_nazev: {
|
|
11
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
12
|
+
},
|
|
13
|
+
umisteni_popis: {
|
|
14
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
15
|
+
},
|
|
16
|
+
pozemek_cislo_parcely: {
|
|
17
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
18
|
+
},
|
|
19
|
+
pozemek_vlastnik: {
|
|
20
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
21
|
+
},
|
|
22
|
+
cislo_vo: {
|
|
23
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
24
|
+
},
|
|
25
|
+
pocet_listu: {
|
|
26
|
+
oneOf: [{ type: "number" }, { type: "null", nullable: true }],
|
|
27
|
+
},
|
|
28
|
+
priorita: {
|
|
29
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
30
|
+
},
|
|
31
|
+
evidence_v_majetku: {
|
|
32
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
33
|
+
},
|
|
34
|
+
cislo_majetku: {
|
|
35
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
36
|
+
},
|
|
37
|
+
pojisteni: {
|
|
38
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
39
|
+
},
|
|
40
|
+
pojisteni_stav: {
|
|
41
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
42
|
+
},
|
|
43
|
+
predano_ozp_do_spravy: {
|
|
44
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
45
|
+
},
|
|
46
|
+
predani_do_spravy: {
|
|
47
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
48
|
+
},
|
|
49
|
+
predani_do_spravy_datum: {
|
|
50
|
+
oneOf: [
|
|
51
|
+
{ type: "string", format: "date" },
|
|
52
|
+
{ type: "null", nullable: true },
|
|
53
|
+
],
|
|
54
|
+
},
|
|
55
|
+
komentare: {
|
|
56
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
57
|
+
},
|
|
58
|
+
id_prvku_ropid: {
|
|
59
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
60
|
+
},
|
|
61
|
+
typ_konstrukce_prvku: {
|
|
62
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
63
|
+
},
|
|
64
|
+
cena_prvku_bez_dph: {
|
|
65
|
+
oneOf: [{ type: "number" }, { type: "null", nullable: true }],
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
required: [],
|
|
69
|
+
additionalProperties: false,
|
|
70
|
+
},
|
|
71
|
+
};
|
|
72
|
+
exports.dbfyprSignpostsJSONSchema = {
|
|
73
|
+
type: "array",
|
|
74
|
+
items: {
|
|
75
|
+
type: "object",
|
|
76
|
+
properties: {
|
|
77
|
+
// These destructured properties are typed as "any", so if inlined, the JSONSchemaType would always be satisfied
|
|
78
|
+
...DBFYPRElementsJSONSchema_1.dbfyprElementsJSONSchema.items.properties,
|
|
79
|
+
...dbfyprSignpostsJSONSchemaAux.items.properties,
|
|
80
|
+
},
|
|
81
|
+
required: [...DBFYPRElementsJSONSchema_1.dbfyprElementsJSONSchema.items.required, ...dbfyprSignpostsJSONSchemaAux.items.required],
|
|
82
|
+
additionalProperties: false,
|
|
83
|
+
},
|
|
84
|
+
};
|
|
85
|
+
//# sourceMappingURL=DBFYPRSignpostsJSONSchema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DBFYPRSignpostsJSONSchema.js","sourceRoot":"","sources":["../../../src/schema-definitions/data-sources/DBFYPRSignpostsJSONSchema.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.dbfyprTotemsJSONSchema = void 0;
|
|
4
|
+
const DBFYPRElementsJSONSchema_1 = require("./DBFYPRElementsJSONSchema");
|
|
5
|
+
const dbfyprTotemsJSONSchemaAux = {
|
|
6
|
+
type: "array",
|
|
7
|
+
items: {
|
|
8
|
+
type: "object",
|
|
9
|
+
properties: {
|
|
10
|
+
velikost_panelu: {
|
|
11
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
12
|
+
},
|
|
13
|
+
lokalita: {
|
|
14
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
15
|
+
},
|
|
16
|
+
zobrazena_ikona: {
|
|
17
|
+
oneOf: [
|
|
18
|
+
{
|
|
19
|
+
type: "array",
|
|
20
|
+
items: { type: "string" },
|
|
21
|
+
},
|
|
22
|
+
{ type: "null", nullable: true },
|
|
23
|
+
],
|
|
24
|
+
},
|
|
25
|
+
linka: {
|
|
26
|
+
oneOf: [
|
|
27
|
+
{
|
|
28
|
+
type: "array",
|
|
29
|
+
items: { type: "string" },
|
|
30
|
+
},
|
|
31
|
+
{ type: "null", nullable: true },
|
|
32
|
+
],
|
|
33
|
+
},
|
|
34
|
+
priorita: {
|
|
35
|
+
oneOf: [{ type: "number" }, { type: "null", nullable: true }],
|
|
36
|
+
},
|
|
37
|
+
mistni_setreni: {
|
|
38
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
39
|
+
},
|
|
40
|
+
vyska_instalace: {
|
|
41
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
42
|
+
},
|
|
43
|
+
cislo_vo: {
|
|
44
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
45
|
+
},
|
|
46
|
+
obmena_vo: {
|
|
47
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
48
|
+
},
|
|
49
|
+
cislo_tv: {
|
|
50
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
51
|
+
},
|
|
52
|
+
ss_stavebni_rizeni: {
|
|
53
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
54
|
+
},
|
|
55
|
+
ss_stavebni_rizeni_stav: {
|
|
56
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
57
|
+
},
|
|
58
|
+
umisteni_poznamka: {
|
|
59
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
60
|
+
},
|
|
61
|
+
mistni_setreni_zprava: {
|
|
62
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
63
|
+
},
|
|
64
|
+
objednavka_stav: {
|
|
65
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
66
|
+
},
|
|
67
|
+
objednavka_cislo: {
|
|
68
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
69
|
+
},
|
|
70
|
+
cena_projekce_bez_dph: {
|
|
71
|
+
oneOf: [{ type: "number" }, { type: "null", nullable: true }],
|
|
72
|
+
},
|
|
73
|
+
cena_realizace_bez_dph: {
|
|
74
|
+
oneOf: [{ type: "number" }, { type: "null", nullable: true }],
|
|
75
|
+
},
|
|
76
|
+
konec_zaruky: {
|
|
77
|
+
oneOf: [
|
|
78
|
+
{ type: "string", format: "date" },
|
|
79
|
+
{ type: "null", nullable: true },
|
|
80
|
+
],
|
|
81
|
+
},
|
|
82
|
+
revize_nasledujici: {
|
|
83
|
+
oneOf: [
|
|
84
|
+
{ type: "string", format: "date" },
|
|
85
|
+
{ type: "null", nullable: true },
|
|
86
|
+
],
|
|
87
|
+
},
|
|
88
|
+
qr_kod: {
|
|
89
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
90
|
+
},
|
|
91
|
+
dodavatel: {
|
|
92
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
93
|
+
},
|
|
94
|
+
predani_do_spravy: {
|
|
95
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
96
|
+
},
|
|
97
|
+
predani_do_spravy_datum: {
|
|
98
|
+
oneOf: [
|
|
99
|
+
{ type: "string", format: "date" },
|
|
100
|
+
{ type: "null", nullable: true },
|
|
101
|
+
],
|
|
102
|
+
},
|
|
103
|
+
zastavka_nazev: {
|
|
104
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
105
|
+
},
|
|
106
|
+
zastavka_typ: {
|
|
107
|
+
oneOf: [
|
|
108
|
+
{
|
|
109
|
+
type: "array",
|
|
110
|
+
items: { type: "string" },
|
|
111
|
+
},
|
|
112
|
+
{ type: "null", nullable: true },
|
|
113
|
+
],
|
|
114
|
+
},
|
|
115
|
+
mistni_setreni_datum: {
|
|
116
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
117
|
+
},
|
|
118
|
+
objednavka_planovany_termin: {
|
|
119
|
+
oneOf: [
|
|
120
|
+
{ type: "string", format: "date" },
|
|
121
|
+
{ type: "null", nullable: true },
|
|
122
|
+
],
|
|
123
|
+
},
|
|
124
|
+
objednavka_zverejneni_v_registru: {
|
|
125
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
126
|
+
},
|
|
127
|
+
faktura_proplacena: {
|
|
128
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
129
|
+
},
|
|
130
|
+
revize_vychozi: {
|
|
131
|
+
oneOf: [
|
|
132
|
+
{ type: "string", format: "date" },
|
|
133
|
+
{ type: "null", nullable: true },
|
|
134
|
+
],
|
|
135
|
+
},
|
|
136
|
+
evidence_v_majetku: {
|
|
137
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
138
|
+
},
|
|
139
|
+
cislo_majetku: {
|
|
140
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
141
|
+
},
|
|
142
|
+
pojisteni: {
|
|
143
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
144
|
+
},
|
|
145
|
+
predano_ozp_do_spravy: {
|
|
146
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
147
|
+
},
|
|
148
|
+
dokumentace_pro_ropid_predana: {
|
|
149
|
+
oneOf: [
|
|
150
|
+
{
|
|
151
|
+
type: "array",
|
|
152
|
+
items: { type: "string" },
|
|
153
|
+
},
|
|
154
|
+
{ type: "null", nullable: true },
|
|
155
|
+
],
|
|
156
|
+
},
|
|
157
|
+
dokumentace_pro_ropid_datum_predani: {
|
|
158
|
+
oneOf: [
|
|
159
|
+
{ type: "string", format: "date" },
|
|
160
|
+
{ type: "null", nullable: true },
|
|
161
|
+
],
|
|
162
|
+
},
|
|
163
|
+
ulice_nazev: {
|
|
164
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
165
|
+
},
|
|
166
|
+
exit_cislo: {
|
|
167
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
168
|
+
},
|
|
169
|
+
priorita_dpp: {
|
|
170
|
+
oneOf: [{ type: "number" }, { type: "null", nullable: true }],
|
|
171
|
+
},
|
|
172
|
+
pojisteni_stav: {
|
|
173
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
174
|
+
},
|
|
175
|
+
komentare: {
|
|
176
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
177
|
+
},
|
|
178
|
+
asw_node_id: {
|
|
179
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
180
|
+
},
|
|
181
|
+
asw_stop_id: {
|
|
182
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
183
|
+
},
|
|
184
|
+
prikon_watt: {
|
|
185
|
+
oneOf: [{ type: "number" }, { type: "null", nullable: true }],
|
|
186
|
+
},
|
|
187
|
+
cislo_prvku_thmp: {
|
|
188
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
189
|
+
},
|
|
190
|
+
smlouva_odber_elektriny: {
|
|
191
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
192
|
+
},
|
|
193
|
+
cetnost_uklidu: {
|
|
194
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
195
|
+
},
|
|
196
|
+
cena_za_odber_elektriny: {
|
|
197
|
+
oneOf: [{ type: "number" }, { type: "null", nullable: true }],
|
|
198
|
+
},
|
|
199
|
+
id_prvku_ropid: {
|
|
200
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
201
|
+
},
|
|
202
|
+
typ_konstrukce_prvku: {
|
|
203
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
204
|
+
},
|
|
205
|
+
cena_prvku_bez_dph: {
|
|
206
|
+
oneOf: [{ type: "number" }, { type: "null", nullable: true }],
|
|
207
|
+
},
|
|
208
|
+
vyrobni_cislo_prvku: {
|
|
209
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
210
|
+
},
|
|
211
|
+
},
|
|
212
|
+
required: [],
|
|
213
|
+
additionalProperties: false,
|
|
214
|
+
},
|
|
215
|
+
};
|
|
216
|
+
exports.dbfyprTotemsJSONSchema = {
|
|
217
|
+
type: "array",
|
|
218
|
+
items: {
|
|
219
|
+
type: "object",
|
|
220
|
+
properties: {
|
|
221
|
+
// These destructured properties are typed as "any", so if inlined, the JSONSchemaType would always be satisfied
|
|
222
|
+
...DBFYPRElementsJSONSchema_1.dbfyprElementsJSONSchema.items.properties,
|
|
223
|
+
...dbfyprTotemsJSONSchemaAux.items.properties,
|
|
224
|
+
},
|
|
225
|
+
required: [...DBFYPRElementsJSONSchema_1.dbfyprElementsJSONSchema.items.required, ...dbfyprTotemsJSONSchemaAux.items.required],
|
|
226
|
+
additionalProperties: false,
|
|
227
|
+
},
|
|
228
|
+
};
|
|
229
|
+
//# sourceMappingURL=DBFYPRTotemsJSONSchema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DBFYPRTotemsJSONSchema.js","sourceRoot":"","sources":["../../../src/schema-definitions/data-sources/DBFYPRTotemsJSONSchema.ts"],"names":[],"mappings":";;;AACA,yEAAsE;AAItE,MAAM,yBAAyB,GAAoE;IAC/F,IAAI,EAAE,OAAO;IACb,KAAK,EAAE;QACH,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACR,eAAe,EAAE;gBACb,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,QAAQ,EAAE;gBACN,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,eAAe,EAAE;gBACb,KAAK,EAAE;oBACH;wBACI,IAAI,EAAE,OAAO;wBACb,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;qBAC5B;oBACD,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;iBACnC;aACJ;YACD,KAAK,EAAE;gBACH,KAAK,EAAE;oBACH;wBACI,IAAI,EAAE,OAAO;wBACb,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;qBAC5B;oBACD,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;iBACnC;aACJ;YACD,QAAQ,EAAE;gBACN,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,cAAc,EAAE;gBACZ,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,eAAe,EAAE;gBACb,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,QAAQ,EAAE;gBACN,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,SAAS,EAAE;gBACP,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,QAAQ,EAAE;gBACN,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,kBAAkB,EAAE;gBAChB,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aACjE;YACD,uBAAuB,EAAE;gBACrB,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,iBAAiB,EAAE;gBACf,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,qBAAqB,EAAE;gBACnB,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,eAAe,EAAE;gBACb,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,gBAAgB,EAAE;gBACd,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,qBAAqB,EAAE;gBACnB,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,sBAAsB,EAAE;gBACpB,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,YAAY,EAAE;gBACV,KAAK,EAAE;oBACH,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE;oBAClC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;iBACnC;aACJ;YACD,kBAAkB,EAAE;gBAChB,KAAK,EAAE;oBACH,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE;oBAClC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;iBACnC;aACJ;YACD,MAAM,EAAE;gBACJ,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,SAAS,EAAE;gBACP,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,iBAAiB,EAAE;gBACf,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aACjE;YACD,uBAAuB,EAAE;gBACrB,KAAK,EAAE;oBACH,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE;oBAClC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;iBACnC;aACJ;YACD,cAAc,EAAE;gBACZ,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,YAAY,EAAE;gBACV,KAAK,EAAE;oBACH;wBACI,IAAI,EAAE,OAAO;wBACb,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;qBAC5B;oBACD,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;iBACnC;aACJ;YACD,oBAAoB,EAAE;gBAClB,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,2BAA2B,EAAE;gBACzB,KAAK,EAAE;oBACH,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE;oBAClC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;iBACnC;aACJ;YACD,gCAAgC,EAAE;gBAC9B,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aACjE;YACD,kBAAkB,EAAE;gBAChB,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aACjE;YACD,cAAc,EAAE;gBACZ,KAAK,EAAE;oBACH,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE;oBAClC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;iBACnC;aACJ;YACD,kBAAkB,EAAE;gBAChB,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aACjE;YACD,aAAa,EAAE;gBACX,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,SAAS,EAAE;gBACP,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aACjE;YACD,qBAAqB,EAAE;gBACnB,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aACjE;YACD,6BAA6B,EAAE;gBAC3B,KAAK,EAAE;oBACH;wBACI,IAAI,EAAE,OAAO;wBACb,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;qBAC5B;oBACD,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;iBACnC;aACJ;YACD,mCAAmC,EAAE;gBACjC,KAAK,EAAE;oBACH,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE;oBAClC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;iBACnC;aACJ;YACD,WAAW,EAAE;gBACT,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,UAAU,EAAE;gBACR,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,YAAY,EAAE;gBACV,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,cAAc,EAAE;gBACZ,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,SAAS,EAAE;gBACP,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,WAAW,EAAE;gBACT,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,WAAW,EAAE;gBACT,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,WAAW,EAAE;gBACT,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,gBAAgB,EAAE;gBACd,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,uBAAuB,EAAE;gBACrB,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,cAAc,EAAE;gBACZ,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,uBAAuB,EAAE;gBACrB,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,cAAc,EAAE;gBACZ,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,oBAAoB,EAAE;gBAClB,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,kBAAkB,EAAE;gBAChB,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;YACD,mBAAmB,EAAE;gBACjB,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aAChE;SACJ;QACD,QAAQ,EAAE,EAAE;QACZ,oBAAoB,EAAE,KAAK;KAC9B;CACJ,CAAC;AAEW,QAAA,sBAAsB,GAAmC;IAClE,IAAI,EAAE,OAAO;IACb,KAAK,EAAE;QACH,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACR,gHAAgH;YAChH,GAAG,mDAAwB,CAAC,KAAK,CAAC,UAAU;YAC5C,GAAG,yBAAyB,CAAC,KAAK,CAAC,UAAU;SAChD;QACD,QAAQ,EAAE,CAAC,GAAG,mDAAwB,CAAC,KAAK,CAAC,QAAQ,EAAE,GAAG,yBAAyB,CAAC,KAAK,CAAC,QAAQ,CAAC;QACnG,oBAAoB,EAAE,KAAK;KAC9B;CACJ,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { IDBFYPRElement } from "./IDBFYPRElement";
|
|
2
|
+
export interface IDBFYPRDisplayCase extends IDBFYPRElement {
|
|
3
|
+
zastavka_nazev: string | null;
|
|
4
|
+
zastavka_smer: string | null;
|
|
5
|
+
stanoviste: string | null;
|
|
6
|
+
zastavka_typ: string[] | null;
|
|
7
|
+
id_zastavky_thmp: string | null;
|
|
8
|
+
pristresek_typ: string | null;
|
|
9
|
+
pristresek_id: string | null;
|
|
10
|
+
qr_kod: string | null;
|
|
11
|
+
dodavatel: string | null;
|
|
12
|
+
komentare: string | null;
|
|
13
|
+
asw_node_id: string | null;
|
|
14
|
+
asw_stop_id: string | null;
|
|
15
|
+
umisteni_popis: string | null;
|
|
16
|
+
ulice_nazev: string | null;
|
|
17
|
+
id_prvku_ropid: string | null;
|
|
18
|
+
cena_prvku_bez_dph: number | null;
|
|
19
|
+
vyrobni_cislo_prvku: string | null;
|
|
20
|
+
cislo_prvku_thmp: string | null;
|
|
21
|
+
cetnost_uklidu: string | null;
|
|
22
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IDBFYPRDisplayCase.js","sourceRoot":"","sources":["../../../../src/schema-definitions/data-sources/interfaces/IDBFYPRDisplayCase.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export interface IDBFYPRElement {
|
|
2
|
+
id: number;
|
|
3
|
+
documentId: string;
|
|
4
|
+
uid_prvku: string | null;
|
|
5
|
+
typ_prvku: string | null;
|
|
6
|
+
nazev_prvku: string | null;
|
|
7
|
+
stav_prvku: string | null;
|
|
8
|
+
vlastnik_prvku: string | null;
|
|
9
|
+
spravce_prvku: string | null;
|
|
10
|
+
umisteni_mestska_cast: string | null;
|
|
11
|
+
souradnice_umisteni_lat: string | null;
|
|
12
|
+
souradnice_umisteni_lon: string | null;
|
|
13
|
+
mapa_odkaz: string | null;
|
|
14
|
+
planovany_rok_realizace: string | null;
|
|
15
|
+
poznamka_k_prvku: string | null;
|
|
16
|
+
predani_do_spravy: boolean | null;
|
|
17
|
+
predani_do_spravy_datum: string | null;
|
|
18
|
+
createdAt: string;
|
|
19
|
+
updatedAt: string;
|
|
20
|
+
publishedAt: string;
|
|
21
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IDBFYPRElement.js","sourceRoot":"","sources":["../../../../src/schema-definitions/data-sources/interfaces/IDBFYPRElement.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { IDBFYPRElement } from "./IDBFYPRElement";
|
|
2
|
+
export interface IDBFYPRInformationPanel extends IDBFYPRElement {
|
|
3
|
+
zastavka_nazev: string | null;
|
|
4
|
+
zastavka_smer: string | null;
|
|
5
|
+
stanoviste: string | null;
|
|
6
|
+
zastavka_typ: string[] | null;
|
|
7
|
+
id_zastavky_thmp: string | null;
|
|
8
|
+
pozemek_cislo_parcely: string | null;
|
|
9
|
+
pozemek_vlastnik: string | null;
|
|
10
|
+
pocet_nastupujicich_v_prac_den: number | null;
|
|
11
|
+
linky: string | null;
|
|
12
|
+
umisteni_popis: string | null;
|
|
13
|
+
overeni_umisteni_na_vo: string | null;
|
|
14
|
+
pristresek_typ: string | null;
|
|
15
|
+
pristresek_id: string | null;
|
|
16
|
+
cislo_vo: string | null;
|
|
17
|
+
typ_povrchu: string | null;
|
|
18
|
+
pripojka_stav: string | null;
|
|
19
|
+
pripojka_typ: string | null;
|
|
20
|
+
pripojka_rezim: string | null;
|
|
21
|
+
priorita: string | null;
|
|
22
|
+
investor_akce: string | null;
|
|
23
|
+
projekce_pozadavek: string | null;
|
|
24
|
+
projekce_stav: string | null;
|
|
25
|
+
projekce_objednavka_cislo: string | null;
|
|
26
|
+
projekce_zverejneni_v_registru: string | null;
|
|
27
|
+
projekce_faktura_proplacena: string | null;
|
|
28
|
+
vyroba_objednavka_cislo: string | null;
|
|
29
|
+
vyroba_stav: string | null;
|
|
30
|
+
vyroba_zverejneni_v_registru: string | null;
|
|
31
|
+
vyroba_faktura_proplacena: string | null;
|
|
32
|
+
realizace_pozadavek: boolean | null;
|
|
33
|
+
realizace_stav: string | null;
|
|
34
|
+
realizace_objednavka_cislo: string | null;
|
|
35
|
+
realizace_zverejneni_v_registru: string | null;
|
|
36
|
+
realizace_faktura_proplacena: string | null;
|
|
37
|
+
nazev_pro_nevidome: string | null;
|
|
38
|
+
hlas_den: string | null;
|
|
39
|
+
hlas_noc: string | null;
|
|
40
|
+
sablony: string | null;
|
|
41
|
+
preset: string | null;
|
|
42
|
+
datovy_zdroj: string | null;
|
|
43
|
+
imsi: string | null;
|
|
44
|
+
misto_napojeni: string | null;
|
|
45
|
+
cislo_mista_napojeni: string | null;
|
|
46
|
+
typ_zakladu: string | null;
|
|
47
|
+
konec_zaruky: string | null;
|
|
48
|
+
revize_vychozi: string | null;
|
|
49
|
+
revize_nasledujici: string | null;
|
|
50
|
+
servis_elektroniky: boolean | null;
|
|
51
|
+
servis_elektroniky_konec: string | null;
|
|
52
|
+
evidence_v_majetku: boolean | null;
|
|
53
|
+
cislo_majetku: string | null;
|
|
54
|
+
pojisteni: boolean | null;
|
|
55
|
+
predano_ozp_do_spravy: boolean | null;
|
|
56
|
+
dokumentace_pro_dpp_pozadavek: boolean | null;
|
|
57
|
+
dokumentace_pro_dpp_datum_predani: string | null;
|
|
58
|
+
termin_projekce: string | null;
|
|
59
|
+
termin_vyroby: string | null;
|
|
60
|
+
dokumentace_pro_ropid_predana: string[] | null;
|
|
61
|
+
dokumentace_pro_ropid_datum_predani: string | null;
|
|
62
|
+
dokumentace_pro_dpp_predana: string[] | null;
|
|
63
|
+
termin_realizace: string | null;
|
|
64
|
+
id_zarizeni: string | null;
|
|
65
|
+
asw_node_id: string | null;
|
|
66
|
+
asw_stop_id: string | null;
|
|
67
|
+
prikon_watt: number | null;
|
|
68
|
+
cislo_prvku_thmp: string | null;
|
|
69
|
+
smlouva_odber_elektriny: string | null;
|
|
70
|
+
cetnost_uklidu: string | null;
|
|
71
|
+
cena_za_odber_elektriny: number | null;
|
|
72
|
+
typ_konstrukce_prvku: string | null;
|
|
73
|
+
velikost_panelu: string | null;
|
|
74
|
+
cena_projekce_bez_dph: number | null;
|
|
75
|
+
cena_vyroba_bez_dph: number | null;
|
|
76
|
+
cena_realizace_bez_dph: number | null;
|
|
77
|
+
vyrobni_cislo_prvku: string | null;
|
|
78
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IDBFYPRInformationPanel.js","sourceRoot":"","sources":["../../../../src/schema-definitions/data-sources/interfaces/IDBFYPRInformationPanel.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IDBFYPRElement } from "./IDBFYPRElement";
|
|
2
|
+
export interface IDBFYPRObelisk extends IDBFYPRElement {
|
|
3
|
+
ulice_nazev: string | null;
|
|
4
|
+
umisteni_popis: string | null;
|
|
5
|
+
pozemek_cislo_parcely: string | null;
|
|
6
|
+
pozemek_vlastnik: string | null;
|
|
7
|
+
priorita: string | null;
|
|
8
|
+
evidence_v_majetku: boolean | null;
|
|
9
|
+
cislo_majetku: string | null;
|
|
10
|
+
pojisteni: boolean | null;
|
|
11
|
+
pojisteni_stav: string | null;
|
|
12
|
+
predano_ozp_do_spravy: boolean | null;
|
|
13
|
+
komentare: string | null;
|
|
14
|
+
id_prvku_ropid: string | null;
|
|
15
|
+
typ_konstrukce_prvku: string | null;
|
|
16
|
+
cena_prvku_bez_dph: number | null;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IDBFYPRObelisk.js","sourceRoot":"","sources":["../../../../src/schema-definitions/data-sources/interfaces/IDBFYPRObelisk.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { IDBFYPRElement } from "./IDBFYPRElement";
|
|
2
|
+
export interface IDBFYPRSignpost extends IDBFYPRElement {
|
|
3
|
+
ulice_nazev: string | null;
|
|
4
|
+
umisteni_popis: string | null;
|
|
5
|
+
pozemek_cislo_parcely: string | null;
|
|
6
|
+
pozemek_vlastnik: string | null;
|
|
7
|
+
cislo_vo: string | null;
|
|
8
|
+
pocet_listu: number | null;
|
|
9
|
+
priorita: string | null;
|
|
10
|
+
evidence_v_majetku: boolean | null;
|
|
11
|
+
cislo_majetku: string | null;
|
|
12
|
+
pojisteni: boolean | null;
|
|
13
|
+
pojisteni_stav: string | null;
|
|
14
|
+
predano_ozp_do_spravy: boolean | null;
|
|
15
|
+
komentare: string | null;
|
|
16
|
+
id_prvku_ropid: string | null;
|
|
17
|
+
typ_konstrukce_prvku: string | null;
|
|
18
|
+
cena_prvku_bez_dph: number | null;
|
|
19
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IDBFYPRSignpost.js","sourceRoot":"","sources":["../../../../src/schema-definitions/data-sources/interfaces/IDBFYPRSignpost.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { IDBFYPRElement } from "./IDBFYPRElement";
|
|
2
|
+
export interface IDBFYPRTotem extends IDBFYPRElement {
|
|
3
|
+
velikost_panelu: string | null;
|
|
4
|
+
lokalita: string | null;
|
|
5
|
+
zobrazena_ikona: string[] | null;
|
|
6
|
+
linka: string[] | null;
|
|
7
|
+
priorita: number | null;
|
|
8
|
+
mistni_setreni: string | null;
|
|
9
|
+
vyska_instalace: string | null;
|
|
10
|
+
cislo_vo: string | null;
|
|
11
|
+
obmena_vo: string | null;
|
|
12
|
+
cislo_tv: string | null;
|
|
13
|
+
ss_stavebni_rizeni: boolean | null;
|
|
14
|
+
ss_stavebni_rizeni_stav: string | null;
|
|
15
|
+
umisteni_poznamka: string | null;
|
|
16
|
+
mistni_setreni_zprava: string | null;
|
|
17
|
+
objednavka_stav: string | null;
|
|
18
|
+
objednavka_cislo: string | null;
|
|
19
|
+
cena_projekce_bez_dph: number | null;
|
|
20
|
+
cena_realizace_bez_dph: number | null;
|
|
21
|
+
konec_zaruky: string | null;
|
|
22
|
+
revize_nasledujici: string | null;
|
|
23
|
+
qr_kod: string | null;
|
|
24
|
+
dodavatel: string | null;
|
|
25
|
+
zastavka_nazev: string | null;
|
|
26
|
+
zastavka_typ: string[] | null;
|
|
27
|
+
mistni_setreni_datum: string | null;
|
|
28
|
+
objednavka_planovany_termin: string | null;
|
|
29
|
+
objednavka_zverejneni_v_registru: boolean | null;
|
|
30
|
+
faktura_proplacena: boolean | null;
|
|
31
|
+
revize_vychozi: string | null;
|
|
32
|
+
evidence_v_majetku: boolean | null;
|
|
33
|
+
cislo_majetku: string | null;
|
|
34
|
+
pojisteni: boolean | null;
|
|
35
|
+
predano_ozp_do_spravy: boolean | null;
|
|
36
|
+
dokumentace_pro_ropid_predana: string[] | null;
|
|
37
|
+
dokumentace_pro_ropid_datum_predani: string | null;
|
|
38
|
+
ulice_nazev: string | null;
|
|
39
|
+
exit_cislo: string | null;
|
|
40
|
+
priorita_dpp: number | null;
|
|
41
|
+
pojisteni_stav: string | null;
|
|
42
|
+
komentare: string | null;
|
|
43
|
+
asw_node_id: string | null;
|
|
44
|
+
asw_stop_id: string | null;
|
|
45
|
+
prikon_watt: number | null;
|
|
46
|
+
cislo_prvku_thmp: string | null;
|
|
47
|
+
smlouva_odber_elektriny: string | null;
|
|
48
|
+
cetnost_uklidu: string | null;
|
|
49
|
+
cena_za_odber_elektriny: number | null;
|
|
50
|
+
id_prvku_ropid: string | null;
|
|
51
|
+
typ_konstrukce_prvku: string | null;
|
|
52
|
+
cena_prvku_bez_dph: number | null;
|
|
53
|
+
vyrobni_cislo_prvku: string | null;
|
|
54
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IDBFYPRTotem.js","sourceRoot":"","sources":["../../../../src/schema-definitions/data-sources/interfaces/IDBFYPRTotem.ts"],"names":[],"mappings":""}
|
|
@@ -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,kBAAe,EAAE,CAAC"}
|