@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 @@
|
|
|
1
|
+
{"version":3,"file":"const.js","sourceRoot":"","sources":["../../src/schema-definitions/const.ts"],"names":[],"mappings":";;;AAAa,QAAA,SAAS,GAAG,MAAM,CAAC"}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.dbfyprDisplayCasesJSONSchema = void 0;
|
|
4
|
+
const DBFYPRElementsJSONSchema_1 = require("./DBFYPRElementsJSONSchema");
|
|
5
|
+
const dbfyprDisplayCasesJSONSchemaAux = {
|
|
6
|
+
type: "array",
|
|
7
|
+
items: {
|
|
8
|
+
type: "object",
|
|
9
|
+
properties: {
|
|
10
|
+
zastavka_nazev: {
|
|
11
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
12
|
+
},
|
|
13
|
+
zastavka_smer: {
|
|
14
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
15
|
+
},
|
|
16
|
+
stanoviste: {
|
|
17
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
18
|
+
},
|
|
19
|
+
zastavka_typ: {
|
|
20
|
+
oneOf: [
|
|
21
|
+
{
|
|
22
|
+
type: "array",
|
|
23
|
+
items: { type: "string" },
|
|
24
|
+
},
|
|
25
|
+
{ type: "null", nullable: true },
|
|
26
|
+
],
|
|
27
|
+
},
|
|
28
|
+
id_zastavky_thmp: {
|
|
29
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
30
|
+
},
|
|
31
|
+
pristresek_typ: {
|
|
32
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
33
|
+
},
|
|
34
|
+
pristresek_id: {
|
|
35
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
36
|
+
},
|
|
37
|
+
qr_kod: {
|
|
38
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
39
|
+
},
|
|
40
|
+
dodavatel: {
|
|
41
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
42
|
+
},
|
|
43
|
+
predani_do_spravy_datum: {
|
|
44
|
+
oneOf: [
|
|
45
|
+
{ type: "string", format: "date" },
|
|
46
|
+
{ type: "null", nullable: true },
|
|
47
|
+
],
|
|
48
|
+
},
|
|
49
|
+
komentare: {
|
|
50
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
51
|
+
},
|
|
52
|
+
asw_node_id: {
|
|
53
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
54
|
+
},
|
|
55
|
+
asw_stop_id: {
|
|
56
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
57
|
+
},
|
|
58
|
+
umisteni_popis: {
|
|
59
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
60
|
+
},
|
|
61
|
+
ulice_nazev: {
|
|
62
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
63
|
+
},
|
|
64
|
+
id_prvku_ropid: {
|
|
65
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
66
|
+
},
|
|
67
|
+
cena_prvku_bez_dph: {
|
|
68
|
+
oneOf: [{ type: "number" }, { type: "null", nullable: true }],
|
|
69
|
+
},
|
|
70
|
+
vyrobni_cislo_prvku: {
|
|
71
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
72
|
+
},
|
|
73
|
+
cislo_prvku_thmp: {
|
|
74
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
75
|
+
},
|
|
76
|
+
cetnost_uklidu: {
|
|
77
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
78
|
+
},
|
|
79
|
+
},
|
|
80
|
+
required: [],
|
|
81
|
+
additionalProperties: false,
|
|
82
|
+
},
|
|
83
|
+
};
|
|
84
|
+
exports.dbfyprDisplayCasesJSONSchema = {
|
|
85
|
+
type: "array",
|
|
86
|
+
items: {
|
|
87
|
+
type: "object",
|
|
88
|
+
properties: {
|
|
89
|
+
// These destructured properties are typed as "any", so if inlined, the JSONSchemaType would always be satisfied
|
|
90
|
+
...DBFYPRElementsJSONSchema_1.dbfyprElementsJSONSchema.items.properties,
|
|
91
|
+
...dbfyprDisplayCasesJSONSchemaAux.items.properties,
|
|
92
|
+
},
|
|
93
|
+
required: [...DBFYPRElementsJSONSchema_1.dbfyprElementsJSONSchema.items.required, ...dbfyprDisplayCasesJSONSchemaAux.items.required],
|
|
94
|
+
additionalProperties: false,
|
|
95
|
+
},
|
|
96
|
+
};
|
|
97
|
+
//# sourceMappingURL=DBFYPRDisplayCasesJSONSchema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DBFYPRDisplayCasesJSONSchema.js","sourceRoot":"","sources":["../../../src/schema-definitions/data-sources/DBFYPRDisplayCasesJSONSchema.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.dbfyprElementsJSONSchema = void 0;
|
|
4
|
+
exports.dbfyprElementsJSONSchema = {
|
|
5
|
+
type: "array",
|
|
6
|
+
items: {
|
|
7
|
+
type: "object",
|
|
8
|
+
properties: {
|
|
9
|
+
id: { type: "integer" },
|
|
10
|
+
documentId: { type: "string" },
|
|
11
|
+
uid_prvku: {
|
|
12
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
13
|
+
},
|
|
14
|
+
typ_prvku: {
|
|
15
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
16
|
+
},
|
|
17
|
+
nazev_prvku: {
|
|
18
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
19
|
+
},
|
|
20
|
+
stav_prvku: {
|
|
21
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
22
|
+
},
|
|
23
|
+
vlastnik_prvku: {
|
|
24
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
25
|
+
},
|
|
26
|
+
spravce_prvku: {
|
|
27
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
28
|
+
},
|
|
29
|
+
umisteni_mestska_cast: {
|
|
30
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
31
|
+
},
|
|
32
|
+
souradnice_umisteni_lat: {
|
|
33
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
34
|
+
},
|
|
35
|
+
souradnice_umisteni_lon: {
|
|
36
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
37
|
+
},
|
|
38
|
+
mapa_odkaz: {
|
|
39
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
40
|
+
},
|
|
41
|
+
planovany_rok_realizace: {
|
|
42
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
43
|
+
},
|
|
44
|
+
poznamka_k_prvku: {
|
|
45
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
46
|
+
},
|
|
47
|
+
predani_do_spravy: {
|
|
48
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
49
|
+
},
|
|
50
|
+
predani_do_spravy_datum: {
|
|
51
|
+
oneOf: [
|
|
52
|
+
{ type: "string", format: "date" },
|
|
53
|
+
{ type: "null", nullable: true },
|
|
54
|
+
],
|
|
55
|
+
},
|
|
56
|
+
createdAt: { type: "string", format: "date-time" },
|
|
57
|
+
updatedAt: { type: "string", format: "date-time" },
|
|
58
|
+
publishedAt: { type: "string", format: "date-time" },
|
|
59
|
+
},
|
|
60
|
+
required: ["id", "documentId", "createdAt", "updatedAt", "publishedAt"],
|
|
61
|
+
additionalProperties: false,
|
|
62
|
+
},
|
|
63
|
+
};
|
|
64
|
+
//# sourceMappingURL=DBFYPRElementsJSONSchema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DBFYPRElementsJSONSchema.js","sourceRoot":"","sources":["../../../src/schema-definitions/data-sources/DBFYPRElementsJSONSchema.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,307 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.dbfyprInformationPanelsJSONSchema = void 0;
|
|
4
|
+
const DBFYPRElementsJSONSchema_1 = require("./DBFYPRElementsJSONSchema");
|
|
5
|
+
const dbfyprInformationPanelsJSONSchemaAux = {
|
|
6
|
+
type: "array",
|
|
7
|
+
items: {
|
|
8
|
+
type: "object",
|
|
9
|
+
properties: {
|
|
10
|
+
zastavka_nazev: {
|
|
11
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
12
|
+
},
|
|
13
|
+
zastavka_smer: {
|
|
14
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
15
|
+
},
|
|
16
|
+
stanoviste: {
|
|
17
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
18
|
+
},
|
|
19
|
+
zastavka_typ: {
|
|
20
|
+
oneOf: [
|
|
21
|
+
{
|
|
22
|
+
type: "array",
|
|
23
|
+
items: { type: "string" },
|
|
24
|
+
},
|
|
25
|
+
{ type: "null", nullable: true },
|
|
26
|
+
],
|
|
27
|
+
},
|
|
28
|
+
id_zastavky_thmp: {
|
|
29
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
30
|
+
},
|
|
31
|
+
pozemek_cislo_parcely: {
|
|
32
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
33
|
+
},
|
|
34
|
+
pozemek_vlastnik: {
|
|
35
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
36
|
+
},
|
|
37
|
+
pocet_nastupujicich_v_prac_den: {
|
|
38
|
+
oneOf: [{ type: "number" }, { type: "null", nullable: true }],
|
|
39
|
+
},
|
|
40
|
+
linky: {
|
|
41
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
42
|
+
},
|
|
43
|
+
umisteni_popis: {
|
|
44
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
45
|
+
},
|
|
46
|
+
overeni_umisteni_na_vo: {
|
|
47
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
48
|
+
},
|
|
49
|
+
pristresek_typ: {
|
|
50
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
51
|
+
},
|
|
52
|
+
pristresek_id: {
|
|
53
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
54
|
+
},
|
|
55
|
+
cislo_vo: {
|
|
56
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
57
|
+
},
|
|
58
|
+
typ_povrchu: {
|
|
59
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
60
|
+
},
|
|
61
|
+
pripojka_stav: {
|
|
62
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
63
|
+
},
|
|
64
|
+
pripojka_typ: {
|
|
65
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
66
|
+
},
|
|
67
|
+
pripojka_rezim: {
|
|
68
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
69
|
+
},
|
|
70
|
+
priorita: {
|
|
71
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
72
|
+
},
|
|
73
|
+
investor_akce: {
|
|
74
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
75
|
+
},
|
|
76
|
+
projekce_pozadavek: {
|
|
77
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
78
|
+
},
|
|
79
|
+
projekce_stav: {
|
|
80
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
81
|
+
},
|
|
82
|
+
projekce_objednavka_cislo: {
|
|
83
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
84
|
+
},
|
|
85
|
+
projekce_zverejneni_v_registru: {
|
|
86
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
87
|
+
},
|
|
88
|
+
projekce_faktura_proplacena: {
|
|
89
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
90
|
+
},
|
|
91
|
+
vyroba_objednavka_cislo: {
|
|
92
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
93
|
+
},
|
|
94
|
+
vyroba_stav: {
|
|
95
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
96
|
+
},
|
|
97
|
+
vyroba_zverejneni_v_registru: {
|
|
98
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
99
|
+
},
|
|
100
|
+
vyroba_faktura_proplacena: {
|
|
101
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
102
|
+
},
|
|
103
|
+
realizace_pozadavek: {
|
|
104
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
105
|
+
},
|
|
106
|
+
realizace_stav: {
|
|
107
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
108
|
+
},
|
|
109
|
+
realizace_objednavka_cislo: {
|
|
110
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
111
|
+
},
|
|
112
|
+
realizace_zverejneni_v_registru: {
|
|
113
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
114
|
+
},
|
|
115
|
+
realizace_faktura_proplacena: {
|
|
116
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
117
|
+
},
|
|
118
|
+
nazev_pro_nevidome: {
|
|
119
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
120
|
+
},
|
|
121
|
+
hlas_den: {
|
|
122
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
123
|
+
},
|
|
124
|
+
hlas_noc: {
|
|
125
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
126
|
+
},
|
|
127
|
+
sablony: {
|
|
128
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
129
|
+
},
|
|
130
|
+
preset: {
|
|
131
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
132
|
+
},
|
|
133
|
+
datovy_zdroj: {
|
|
134
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
135
|
+
},
|
|
136
|
+
imsi: {
|
|
137
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
138
|
+
},
|
|
139
|
+
misto_napojeni: {
|
|
140
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
141
|
+
},
|
|
142
|
+
cislo_mista_napojeni: {
|
|
143
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
144
|
+
},
|
|
145
|
+
typ_zakladu: {
|
|
146
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
147
|
+
},
|
|
148
|
+
konec_zaruky: {
|
|
149
|
+
oneOf: [
|
|
150
|
+
{ type: "string", format: "date" },
|
|
151
|
+
{ type: "null", nullable: true },
|
|
152
|
+
],
|
|
153
|
+
},
|
|
154
|
+
revize_vychozi: {
|
|
155
|
+
oneOf: [
|
|
156
|
+
{ type: "string", format: "date" },
|
|
157
|
+
{ type: "null", nullable: true },
|
|
158
|
+
],
|
|
159
|
+
},
|
|
160
|
+
revize_nasledujici: {
|
|
161
|
+
oneOf: [
|
|
162
|
+
{ type: "string", format: "date" },
|
|
163
|
+
{ type: "null", nullable: true },
|
|
164
|
+
],
|
|
165
|
+
},
|
|
166
|
+
servis_elektroniky: {
|
|
167
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
168
|
+
},
|
|
169
|
+
servis_elektroniky_konec: {
|
|
170
|
+
oneOf: [
|
|
171
|
+
{ type: "string", format: "date" },
|
|
172
|
+
{ type: "null", nullable: true },
|
|
173
|
+
],
|
|
174
|
+
},
|
|
175
|
+
evidence_v_majetku: {
|
|
176
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
177
|
+
},
|
|
178
|
+
cislo_majetku: {
|
|
179
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
180
|
+
},
|
|
181
|
+
pojisteni: {
|
|
182
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
183
|
+
},
|
|
184
|
+
predano_ozp_do_spravy: {
|
|
185
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
186
|
+
},
|
|
187
|
+
predani_do_spravy: {
|
|
188
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
189
|
+
},
|
|
190
|
+
predani_do_spravy_datum: {
|
|
191
|
+
oneOf: [
|
|
192
|
+
{ type: "string", format: "date" },
|
|
193
|
+
{ type: "null", nullable: true },
|
|
194
|
+
],
|
|
195
|
+
},
|
|
196
|
+
dokumentace_pro_dpp_pozadavek: {
|
|
197
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
198
|
+
},
|
|
199
|
+
dokumentace_pro_dpp_datum_predani: {
|
|
200
|
+
oneOf: [
|
|
201
|
+
{ type: "string", format: "date" },
|
|
202
|
+
{ type: "null", nullable: true },
|
|
203
|
+
],
|
|
204
|
+
},
|
|
205
|
+
termin_projekce: {
|
|
206
|
+
oneOf: [
|
|
207
|
+
{ type: "string", format: "date" },
|
|
208
|
+
{ type: "null", nullable: true },
|
|
209
|
+
],
|
|
210
|
+
},
|
|
211
|
+
termin_vyroby: {
|
|
212
|
+
oneOf: [
|
|
213
|
+
{ type: "string", format: "date" },
|
|
214
|
+
{ type: "null", nullable: true },
|
|
215
|
+
],
|
|
216
|
+
},
|
|
217
|
+
dokumentace_pro_ropid_predana: {
|
|
218
|
+
oneOf: [
|
|
219
|
+
{
|
|
220
|
+
type: "array",
|
|
221
|
+
items: { type: "string" },
|
|
222
|
+
},
|
|
223
|
+
{ type: "null", nullable: true },
|
|
224
|
+
],
|
|
225
|
+
},
|
|
226
|
+
dokumentace_pro_ropid_datum_predani: {
|
|
227
|
+
oneOf: [
|
|
228
|
+
{ type: "string", format: "date" },
|
|
229
|
+
{ type: "null", nullable: true },
|
|
230
|
+
],
|
|
231
|
+
},
|
|
232
|
+
dokumentace_pro_dpp_predana: {
|
|
233
|
+
oneOf: [
|
|
234
|
+
{
|
|
235
|
+
type: "array",
|
|
236
|
+
items: { type: "string" },
|
|
237
|
+
},
|
|
238
|
+
{ type: "null", nullable: true },
|
|
239
|
+
],
|
|
240
|
+
},
|
|
241
|
+
termin_realizace: {
|
|
242
|
+
oneOf: [
|
|
243
|
+
{ type: "string", format: "date" },
|
|
244
|
+
{ type: "null", nullable: true },
|
|
245
|
+
],
|
|
246
|
+
},
|
|
247
|
+
id_zarizeni: {
|
|
248
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
249
|
+
},
|
|
250
|
+
asw_node_id: {
|
|
251
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
252
|
+
},
|
|
253
|
+
asw_stop_id: {
|
|
254
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
255
|
+
},
|
|
256
|
+
prikon_watt: {
|
|
257
|
+
oneOf: [{ type: "number" }, { type: "null", nullable: true }],
|
|
258
|
+
},
|
|
259
|
+
cislo_prvku_thmp: {
|
|
260
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
261
|
+
},
|
|
262
|
+
smlouva_odber_elektriny: {
|
|
263
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
264
|
+
},
|
|
265
|
+
cetnost_uklidu: {
|
|
266
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
267
|
+
},
|
|
268
|
+
cena_za_odber_elektriny: {
|
|
269
|
+
oneOf: [{ type: "number" }, { type: "null", nullable: true }],
|
|
270
|
+
},
|
|
271
|
+
typ_konstrukce_prvku: {
|
|
272
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
273
|
+
},
|
|
274
|
+
velikost_panelu: {
|
|
275
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
276
|
+
},
|
|
277
|
+
cena_projekce_bez_dph: {
|
|
278
|
+
oneOf: [{ type: "number" }, { type: "null", nullable: true }],
|
|
279
|
+
},
|
|
280
|
+
cena_vyroba_bez_dph: {
|
|
281
|
+
oneOf: [{ type: "number" }, { type: "null", nullable: true }],
|
|
282
|
+
},
|
|
283
|
+
cena_realizace_bez_dph: {
|
|
284
|
+
oneOf: [{ type: "number" }, { type: "null", nullable: true }],
|
|
285
|
+
},
|
|
286
|
+
vyrobni_cislo_prvku: {
|
|
287
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
288
|
+
},
|
|
289
|
+
},
|
|
290
|
+
required: [],
|
|
291
|
+
additionalProperties: false,
|
|
292
|
+
},
|
|
293
|
+
};
|
|
294
|
+
exports.dbfyprInformationPanelsJSONSchema = {
|
|
295
|
+
type: "array",
|
|
296
|
+
items: {
|
|
297
|
+
type: "object",
|
|
298
|
+
properties: {
|
|
299
|
+
// These destructured properties are typed as "any", so if inlined, the JSONSchemaType would always be satisfied
|
|
300
|
+
...DBFYPRElementsJSONSchema_1.dbfyprElementsJSONSchema.items.properties,
|
|
301
|
+
...dbfyprInformationPanelsJSONSchemaAux.items.properties,
|
|
302
|
+
},
|
|
303
|
+
required: [...DBFYPRElementsJSONSchema_1.dbfyprElementsJSONSchema.items.required, ...dbfyprInformationPanelsJSONSchemaAux.items.required],
|
|
304
|
+
additionalProperties: false,
|
|
305
|
+
},
|
|
306
|
+
};
|
|
307
|
+
//# sourceMappingURL=DBFYPRInformationPanelsJSONSchema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DBFYPRInformationPanelsJSONSchema.js","sourceRoot":"","sources":["../../../src/schema-definitions/data-sources/DBFYPRInformationPanelsJSONSchema.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.dbfyprObelisksJSONSchema = void 0;
|
|
4
|
+
const DBFYPRElementsJSONSchema_1 = require("./DBFYPRElementsJSONSchema");
|
|
5
|
+
const dbfyprObelisksJSONSchemaAux = {
|
|
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
|
+
priorita: {
|
|
23
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
24
|
+
},
|
|
25
|
+
evidence_v_majetku: {
|
|
26
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
27
|
+
},
|
|
28
|
+
cislo_majetku: {
|
|
29
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
30
|
+
},
|
|
31
|
+
pojisteni: {
|
|
32
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
33
|
+
},
|
|
34
|
+
pojisteni_stav: {
|
|
35
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
36
|
+
},
|
|
37
|
+
predano_ozp_do_spravy: {
|
|
38
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
39
|
+
},
|
|
40
|
+
predani_do_spravy: {
|
|
41
|
+
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
|
|
42
|
+
},
|
|
43
|
+
predani_do_spravy_datum: {
|
|
44
|
+
oneOf: [
|
|
45
|
+
{ type: "string", format: "date" },
|
|
46
|
+
{ type: "null", nullable: true },
|
|
47
|
+
],
|
|
48
|
+
},
|
|
49
|
+
komentare: {
|
|
50
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
51
|
+
},
|
|
52
|
+
id_prvku_ropid: {
|
|
53
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
54
|
+
},
|
|
55
|
+
typ_konstrukce_prvku: {
|
|
56
|
+
oneOf: [{ type: "string" }, { type: "null", nullable: true }],
|
|
57
|
+
},
|
|
58
|
+
cena_prvku_bez_dph: {
|
|
59
|
+
oneOf: [{ type: "number" }, { type: "null", nullable: true }],
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
required: [],
|
|
63
|
+
additionalProperties: false,
|
|
64
|
+
},
|
|
65
|
+
};
|
|
66
|
+
exports.dbfyprObelisksJSONSchema = {
|
|
67
|
+
type: "array",
|
|
68
|
+
items: {
|
|
69
|
+
type: "object",
|
|
70
|
+
properties: {
|
|
71
|
+
// These destructured properties are typed as "any", so if inlined, the JSONSchemaType would always be satisfied
|
|
72
|
+
...DBFYPRElementsJSONSchema_1.dbfyprElementsJSONSchema.items.properties,
|
|
73
|
+
...dbfyprObelisksJSONSchemaAux.items.properties,
|
|
74
|
+
},
|
|
75
|
+
required: [...DBFYPRElementsJSONSchema_1.dbfyprElementsJSONSchema.items.required, ...dbfyprObelisksJSONSchemaAux.items.required],
|
|
76
|
+
additionalProperties: false,
|
|
77
|
+
},
|
|
78
|
+
};
|
|
79
|
+
//# sourceMappingURL=DBFYPRObelisksJSONSchema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DBFYPRObelisksJSONSchema.js","sourceRoot":"","sources":["../../../src/schema-definitions/data-sources/DBFYPRObelisksJSONSchema.ts"],"names":[],"mappings":";;;AACA,yEAAsE;AAItE,MAAM,2BAA2B,GAAsE;IACnG,IAAI,EAAE,OAAO;IACb,KAAK,EAAE;QACH,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACR,WAAW,EAAE;gBACT,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,qBAAqB,EAAE;gBACnB,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,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,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,cAAc,EAAE;gBACZ,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,SAAS,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;aACjE;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,SAAS,EAAE;gBACP,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;SACJ;QACD,QAAQ,EAAE,EAAE;QACZ,oBAAoB,EAAE,KAAK;KAC9B;CACJ,CAAC;AAEW,QAAA,wBAAwB,GAAqC;IACtE,IAAI,EAAE,OAAO;IACb,KAAK,EAAE;QACH,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACR,gHAAgH;YAChH,GAAG,mDAAwB,CAAC,KAAK,CAAC,UAAU;YAC5C,GAAG,2BAA2B,CAAC,KAAK,CAAC,UAAU;SAClD;QACD,QAAQ,EAAE,CAAC,GAAG,mDAAwB,CAAC,KAAK,CAAC,QAAQ,EAAE,GAAG,2BAA2B,CAAC,KAAK,CAAC,QAAQ,CAAC;QACrG,oBAAoB,EAAE,KAAK;KAC9B;CACJ,CAAC"}
|