@golemio/pid 2.14.6-dev.1384582974 → 2.14.6-dev.1386060344
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/01_departure_directions.sql +3 -3
- package/dist/integration-engine/index.js +0 -2
- package/dist/integration-engine/index.js.map +1 -1
- package/dist/integration-engine/ropid-gtfs/datasources/StaticDataSourceFactory.d.ts +13 -0
- package/dist/integration-engine/ropid-gtfs/datasources/StaticDataSourceFactory.js +35 -0
- package/dist/integration-engine/ropid-gtfs/datasources/StaticDataSourceFactory.js.map +1 -0
- package/dist/integration-engine/ropid-gtfs/datasources/static-data/DeparturesDirectionDataSourceProvider.d.ts +9 -0
- package/dist/integration-engine/ropid-gtfs/datasources/static-data/DeparturesDirectionDataSourceProvider.js +49 -0
- package/dist/integration-engine/ropid-gtfs/datasources/static-data/DeparturesDirectionDataSourceProvider.js.map +1 -0
- package/dist/integration-engine/ropid-gtfs/datasources/static-data/MetroRailTrackDataSourceProvider.d.ts +9 -0
- package/dist/integration-engine/ropid-gtfs/datasources/static-data/MetroRailTrackDataSourceProvider.js +49 -0
- package/dist/integration-engine/ropid-gtfs/datasources/static-data/MetroRailTrackDataSourceProvider.js.map +1 -0
- package/dist/integration-engine/ropid-gtfs/ioc/Di.js +16 -0
- package/dist/integration-engine/ropid-gtfs/ioc/Di.js.map +1 -1
- package/dist/integration-engine/ropid-gtfs/ioc/RopidGtfsContainerToken.d.ts +9 -0
- package/dist/integration-engine/ropid-gtfs/ioc/RopidGtfsContainerToken.js +9 -0
- package/dist/integration-engine/ropid-gtfs/ioc/RopidGtfsContainerToken.js.map +1 -1
- package/dist/integration-engine/ropid-gtfs/workers/timetables/TimetableWorker.js +1 -0
- package/dist/integration-engine/ropid-gtfs/workers/timetables/TimetableWorker.js.map +1 -1
- package/dist/integration-engine/ropid-gtfs/workers/timetables/tasks/CheckForNewDataTask.js +6 -4
- package/dist/integration-engine/ropid-gtfs/workers/timetables/tasks/CheckForNewDataTask.js.map +1 -1
- package/dist/integration-engine/ropid-gtfs/workers/timetables/tasks/SaveStaticDataTask.d.ts +17 -0
- package/dist/integration-engine/ropid-gtfs/workers/timetables/tasks/SaveStaticDataTask.js +86 -0
- package/dist/integration-engine/ropid-gtfs/workers/timetables/tasks/SaveStaticDataTask.js.map +1 -0
- package/dist/integration-engine/ropid-gtfs/workers/timetables/tasks/data-access/DeparturesDirectionRepository.d.ts +6 -0
- package/dist/integration-engine/ropid-gtfs/workers/timetables/tasks/data-access/DeparturesDirectionRepository.js +67 -0
- package/dist/integration-engine/ropid-gtfs/workers/timetables/tasks/data-access/DeparturesDirectionRepository.js.map +1 -0
- package/dist/integration-engine/ropid-gtfs/workers/timetables/tasks/data-access/MetroRailtrackGPSRepository.js.map +1 -0
- package/dist/integration-engine/ropid-gtfs/workers/{railtrack → timetables}/tasks/interfaces/IAggregatedRailtrackGPSData.js.map +1 -1
- package/dist/integration-engine/ropid-gtfs/workers/timetables/tasks/transformations/DeparturesDirectionTransformation.d.ts +8 -0
- package/dist/integration-engine/ropid-gtfs/workers/timetables/tasks/transformations/DeparturesDirectionTransformation.js +28 -0
- package/dist/integration-engine/ropid-gtfs/workers/timetables/tasks/transformations/DeparturesDirectionTransformation.js.map +1 -0
- package/dist/integration-engine/ropid-gtfs/workers/timetables/tasks/transformations/MetroRailtrackDataTransformation.d.ts +8 -0
- package/dist/integration-engine/ropid-gtfs/workers/{railtrack → timetables}/tasks/transformations/MetroRailtrackDataTransformation.js +4 -12
- package/dist/integration-engine/ropid-gtfs/workers/timetables/tasks/transformations/MetroRailtrackDataTransformation.js.map +1 -0
- package/dist/integration-engine/vehicle-positions/ioc/Di.js +1 -1
- package/dist/integration-engine/vehicle-positions/ioc/Di.js.map +1 -1
- package/dist/integration-engine/vehicle-positions/workers/runs/interfaces/IMetroRunInputForProcessing.d.ts +1 -1
- package/dist/integration-engine/vehicle-positions/workers/runs/tasks/ProcessMetroRunMessagesTask.js +1 -1
- package/dist/integration-engine/vehicle-positions/workers/runs/tasks/ProcessMetroRunMessagesTask.js.map +1 -1
- package/dist/integration-engine/vehicle-positions/workers/runs/transformations/MetroRunsMessageProcessingTransformation.d.ts +1 -1
- package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/data-access/metro/CachedMetroRailtrackLookup.d.ts +1 -1
- package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/data-access/metro/CachedMetroRailtrackLookup.js +1 -1
- package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/data-access/metro/CachedMetroRailtrackLookup.js.map +1 -1
- package/dist/schema-definitions/datasources/static-data/DeparturesDirectionsJsonSchema.d.ts +40 -0
- package/dist/schema-definitions/datasources/static-data/DeparturesDirectionsJsonSchema.js +45 -0
- package/dist/schema-definitions/datasources/static-data/DeparturesDirectionsJsonSchema.js.map +1 -0
- package/dist/schema-definitions/datasources/static-data/MetroRailTrackJsonSchema.d.ts +24 -0
- package/dist/schema-definitions/datasources/static-data/MetroRailTrackJsonSchema.js +28 -0
- package/dist/schema-definitions/datasources/static-data/MetroRailTrackJsonSchema.js.map +1 -0
- package/dist/schema-definitions/datasources/static-data/index.d.ts +3 -0
- package/dist/schema-definitions/datasources/static-data/index.js +20 -0
- package/dist/schema-definitions/datasources/static-data/index.js.map +1 -0
- package/dist/schema-definitions/datasources/static-data/interfaces/DeparturesDirectionDataInterface.d.ts +11 -0
- package/dist/schema-definitions/datasources/static-data/interfaces/DeparturesDirectionDataInterface.js +3 -0
- package/dist/schema-definitions/datasources/static-data/interfaces/DeparturesDirectionDataInterface.js.map +1 -0
- package/dist/{integration-engine/ropid-gtfs/workers/railtrack/tasks/interfaces/MetroRailtrackDataInterfaces.d.ts → schema-definitions/datasources/static-data/interfaces/MetroRailTrackDataInterface.d.ts} +0 -3
- package/dist/schema-definitions/datasources/static-data/interfaces/MetroRailTrackDataInterface.js +17 -0
- package/dist/schema-definitions/datasources/static-data/interfaces/MetroRailTrackDataInterface.js.map +1 -0
- package/dist/schema-definitions/datasources/static-data/interfaces/index.d.ts +2 -0
- package/dist/schema-definitions/datasources/static-data/interfaces/index.js +19 -0
- package/dist/schema-definitions/datasources/static-data/interfaces/index.js.map +1 -0
- package/dist/schema-definitions/ropid-departures-directions/index.d.ts +3 -11
- package/dist/schema-definitions/ropid-departures-directions/index.js +12 -12
- package/dist/schema-definitions/ropid-departures-directions/index.js.map +1 -1
- package/dist/schema-definitions/ropid-gtfs/interfaces/IDeparturesDirectionDto.d.ts +11 -0
- package/dist/{integration-engine/ropid-gtfs/workers/railtrack/tasks/interfaces/MetroRailtrackDataInterfaces.js → schema-definitions/ropid-gtfs/interfaces/IDeparturesDirectionDto.js} +1 -1
- package/dist/schema-definitions/ropid-gtfs/interfaces/IDeparturesDirectionDto.js.map +1 -0
- package/dist/schema-definitions/ropid-gtfs/models/DeparturesDirectionDto.d.ts +18 -0
- package/dist/schema-definitions/ropid-gtfs/models/DeparturesDirectionDto.js +86 -0
- package/dist/schema-definitions/ropid-gtfs/models/DeparturesDirectionDto.js.map +1 -0
- package/docs/implementation_documentation.md +38 -33
- package/package.json +1 -1
- package/dist/integration-engine/ropid-gtfs/workers/railtrack/RailtrackWorker.d.ts +0 -5
- package/dist/integration-engine/ropid-gtfs/workers/railtrack/RailtrackWorker.js +0 -16
- package/dist/integration-engine/ropid-gtfs/workers/railtrack/RailtrackWorker.js.map +0 -1
- package/dist/integration-engine/ropid-gtfs/workers/railtrack/tasks/SaveMetroRailtrackDataToDBTask.d.ts +0 -12
- package/dist/integration-engine/ropid-gtfs/workers/railtrack/tasks/SaveMetroRailtrackDataToDBTask.js +0 -38
- package/dist/integration-engine/ropid-gtfs/workers/railtrack/tasks/SaveMetroRailtrackDataToDBTask.js.map +0 -1
- package/dist/integration-engine/ropid-gtfs/workers/railtrack/tasks/data-access/MetroRailtrackGPSRepository.js.map +0 -1
- package/dist/integration-engine/ropid-gtfs/workers/railtrack/tasks/interfaces/MetroRailtrackDataInterfaces.js.map +0 -1
- package/dist/integration-engine/ropid-gtfs/workers/railtrack/tasks/schema/MetroRailtrackDataSchema.d.ts +0 -4
- package/dist/integration-engine/ropid-gtfs/workers/railtrack/tasks/schema/MetroRailtrackDataSchema.js +0 -51
- package/dist/integration-engine/ropid-gtfs/workers/railtrack/tasks/schema/MetroRailtrackDataSchema.js.map +0 -1
- package/dist/integration-engine/ropid-gtfs/workers/railtrack/tasks/transformations/MetroRailtrackDataTransformation.d.ts +0 -8
- package/dist/integration-engine/ropid-gtfs/workers/railtrack/tasks/transformations/MetroRailtrackDataTransformation.js.map +0 -1
- /package/dist/integration-engine/ropid-gtfs/workers/{railtrack → timetables}/tasks/data-access/MetroRailtrackGPSRepository.d.ts +0 -0
- /package/dist/integration-engine/ropid-gtfs/workers/{railtrack → timetables}/tasks/data-access/MetroRailtrackGPSRepository.js +0 -0
- /package/dist/integration-engine/ropid-gtfs/workers/{railtrack → timetables}/tasks/interfaces/IAggregatedRailtrackGPSData.d.ts +0 -0
- /package/dist/integration-engine/ropid-gtfs/workers/{railtrack → timetables}/tasks/interfaces/IAggregatedRailtrackGPSData.js +0 -0
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeparturesDirectionModel = void 0;
|
|
4
|
+
const sequelize_1 = require("@golemio/core/dist/shared/sequelize");
|
|
5
|
+
const ropid_departures_directions_1 = require("../../ropid-departures-directions");
|
|
6
|
+
class DeparturesDirectionModel extends sequelize_1.Model {
|
|
7
|
+
}
|
|
8
|
+
exports.DeparturesDirectionModel = DeparturesDirectionModel;
|
|
9
|
+
DeparturesDirectionModel.TABLE_NAME = "ropid_departures_directions";
|
|
10
|
+
DeparturesDirectionModel.attributeModel = {
|
|
11
|
+
id: {
|
|
12
|
+
type: sequelize_1.DataTypes.INTEGER,
|
|
13
|
+
primaryKey: true,
|
|
14
|
+
autoIncrement: true,
|
|
15
|
+
unique: true,
|
|
16
|
+
},
|
|
17
|
+
departure_stop_id: {
|
|
18
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
19
|
+
allowNull: false,
|
|
20
|
+
},
|
|
21
|
+
next_stop_id_regexp: {
|
|
22
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
23
|
+
allowNull: false,
|
|
24
|
+
},
|
|
25
|
+
direction: {
|
|
26
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
27
|
+
allowNull: false,
|
|
28
|
+
},
|
|
29
|
+
rule_order: {
|
|
30
|
+
type: sequelize_1.DataTypes.INTEGER,
|
|
31
|
+
allowNull: false,
|
|
32
|
+
defaultValue: 0,
|
|
33
|
+
},
|
|
34
|
+
create_batch_id: {
|
|
35
|
+
type: sequelize_1.DataTypes.BIGINT,
|
|
36
|
+
allowNull: true,
|
|
37
|
+
},
|
|
38
|
+
created_by: {
|
|
39
|
+
type: sequelize_1.DataTypes.STRING(150),
|
|
40
|
+
allowNull: true,
|
|
41
|
+
},
|
|
42
|
+
update_batch_id: {
|
|
43
|
+
type: sequelize_1.DataTypes.BIGINT,
|
|
44
|
+
allowNull: true,
|
|
45
|
+
},
|
|
46
|
+
updated_by: {
|
|
47
|
+
type: sequelize_1.DataTypes.STRING(150),
|
|
48
|
+
allowNull: true,
|
|
49
|
+
},
|
|
50
|
+
};
|
|
51
|
+
// @ts-expect-error
|
|
52
|
+
DeparturesDirectionModel.arrayJsonSchema = {
|
|
53
|
+
type: "array",
|
|
54
|
+
items: {
|
|
55
|
+
type: "object",
|
|
56
|
+
properties: {
|
|
57
|
+
departure_stop_id: {
|
|
58
|
+
type: "string",
|
|
59
|
+
},
|
|
60
|
+
next_stop_id_regexp: {
|
|
61
|
+
type: "string",
|
|
62
|
+
},
|
|
63
|
+
direction: {
|
|
64
|
+
type: "string",
|
|
65
|
+
enum: ropid_departures_directions_1.PossibleDeparturesDirections,
|
|
66
|
+
},
|
|
67
|
+
rule_order: {
|
|
68
|
+
type: "number",
|
|
69
|
+
},
|
|
70
|
+
create_batch_id: {
|
|
71
|
+
type: ["string", "null"],
|
|
72
|
+
},
|
|
73
|
+
created_by: {
|
|
74
|
+
type: ["string", "null"],
|
|
75
|
+
},
|
|
76
|
+
update_batch_id: {
|
|
77
|
+
type: ["string", "null"],
|
|
78
|
+
},
|
|
79
|
+
updated_by: {
|
|
80
|
+
type: ["string", "null"],
|
|
81
|
+
},
|
|
82
|
+
},
|
|
83
|
+
required: ["departure_stop_id", "next_stop_id_regexp", "direction", "rule_order"],
|
|
84
|
+
},
|
|
85
|
+
};
|
|
86
|
+
//# sourceMappingURL=DeparturesDirectionDto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DeparturesDirectionDto.js","sourceRoot":"","sources":["../../../../src/schema-definitions/ropid-gtfs/models/DeparturesDirectionDto.ts"],"names":[],"mappings":";;;AAAA,mEAAwF;AACxF,mFAA0G;AAI1G,MAAa,wBAAyB,SAAQ,iBAA+B;;AAA7E,4DA0FC;AAzFiB,mCAAU,GAAG,6BAA6B,CAAC;AAY3C,uCAAc,GAA8C;IACtE,EAAE,EAAE;QACA,IAAI,EAAE,qBAAS,CAAC,OAAO;QACvB,UAAU,EAAE,IAAI;QAChB,aAAa,EAAE,IAAI;QACnB,MAAM,EAAE,IAAI;KACf;IACD,iBAAiB,EAAE;QACf,IAAI,EAAE,qBAAS,CAAC,IAAI;QACpB,SAAS,EAAE,KAAK;KACnB;IACD,mBAAmB,EAAE;QACjB,IAAI,EAAE,qBAAS,CAAC,IAAI;QACpB,SAAS,EAAE,KAAK;KACnB;IACD,SAAS,EAAE;QACP,IAAI,EAAE,qBAAS,CAAC,IAAI;QACpB,SAAS,EAAE,KAAK;KACnB;IACD,UAAU,EAAE;QACR,IAAI,EAAE,qBAAS,CAAC,OAAO;QACvB,SAAS,EAAE,KAAK;QAChB,YAAY,EAAE,CAAC;KAClB;IACD,eAAe,EAAE;QACb,IAAI,EAAE,qBAAS,CAAC,MAAM;QACtB,SAAS,EAAE,IAAI;KAClB;IACD,UAAU,EAAE;QACR,IAAI,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;QAC3B,SAAS,EAAE,IAAI;KAClB;IACD,eAAe,EAAE;QACb,IAAI,EAAE,qBAAS,CAAC,MAAM;QACtB,SAAS,EAAE,IAAI;KAClB;IACD,UAAU,EAAE;QACR,IAAI,EAAE,qBAAS,CAAC,MAAM,CAAC,GAAG,CAAC;QAC3B,SAAS,EAAE,IAAI;KAClB;CACJ,CAAC;AACF,mBAAmB;AACL,wCAAe,GAA8C;IACvE,IAAI,EAAE,OAAO;IACb,KAAK,EAAE;QACH,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACR,iBAAiB,EAAE;gBACf,IAAI,EAAE,QAAQ;aACjB;YACD,mBAAmB,EAAE;gBACjB,IAAI,EAAE,QAAQ;aACjB;YACD,SAAS,EAAE;gBACP,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,0DAA4B;aACrC;YACD,UAAU,EAAE;gBACR,IAAI,EAAE,QAAQ;aACjB;YACD,eAAe,EAAE;gBACb,IAAI,EAAE,CAAC,QAAQ,EAAE,MAAM,CAAC;aAC3B;YACD,UAAU,EAAE;gBACR,IAAI,EAAE,CAAC,QAAQ,EAAE,MAAM,CAAC;aAC3B;YAED,eAAe,EAAE;gBACb,IAAI,EAAE,CAAC,QAAQ,EAAE,MAAM,CAAC;aAC3B;YACD,UAAU,EAAE;gBACR,IAAI,EAAE,CAAC,QAAQ,EAAE,MAAM,CAAC;aAC3B;SACJ;QACD,QAAQ,EAAE,CAAC,mBAAmB,EAAE,qBAAqB,EAAE,WAAW,EAAE,YAAY,CAAC;KACpF;CACJ,CAAC"}
|
|
@@ -197,19 +197,6 @@ _:warning: Původním záměrem bylo využití OIS číselníku během zpracová
|
|
|
197
197
|
- název rabbitmq fronty
|
|
198
198
|
- neexistuje
|
|
199
199
|
|
|
200
|
-
#### _Kolejové obvody pro metro_
|
|
201
|
-
|
|
202
|
-
- zdroj dat
|
|
203
|
-
- soubor: statická data dodává ROPID + CHAPS [metro_railtrack_data.csv](https://gitlab.com/operator-ict/golemio/code/modules/pid/-/blob/development/static/metro_railtrack_data.csv)
|
|
204
|
-
- formát dat
|
|
205
|
-
- datový typ: csv
|
|
206
|
-
- validační schéma: [MetroRailtrackDataSchema](https://gitlab.com/operator-ict/golemio/code/modules/pid/-/blob/development/src/integration-engine/ropid-gtfs/workers/railtrack/tasks/schema/MetroRailtrackDataSchema.ts)
|
|
207
|
-
- příklad vstupnich dat: viz zdroj dat
|
|
208
|
-
- frekvence stahování
|
|
209
|
-
- manuální refresh dat https://gitlab.com/operator-ict/golemio/code/modules/pid/-/snippets/2431869
|
|
210
|
-
- název rabbitmq fronty
|
|
211
|
-
- vehicle-positions.ropidgtfsrailtrack.saveMetroRailtrackDataToDB
|
|
212
|
-
|
|
213
200
|
#### _Grafana Loki_
|
|
214
201
|
|
|
215
202
|
- zdroj dat
|
|
@@ -227,7 +214,25 @@ _:warning: Původním záměrem bylo využití OIS číselníku během zpracová
|
|
|
227
214
|
- prod `0 */1 * * * *`
|
|
228
215
|
- názvy rabbitmq front
|
|
229
216
|
- vehicle-positions.ropidpresets.collectAndSaveLogs se zprávou `{ "targetMinutes": n }`
|
|
217
|
+
-
|
|
230
218
|
|
|
219
|
+
### _Ropid staticka data_
|
|
220
|
+
|
|
221
|
+
- zdroj dat
|
|
222
|
+
- baseUrl: module.pid.staticData.baseUrl
|
|
223
|
+
- departure directions url: module.pid.staticData.departuresDirection.path
|
|
224
|
+
- metro rail track url: module.pid.staticData.metroRailTracks.path
|
|
225
|
+
- formát dat
|
|
226
|
+
- protokol: http
|
|
227
|
+
- datový typ: csv
|
|
228
|
+
- validační schéma:
|
|
229
|
+
- [MetroRailTrack](../src/schema-definitions/datasources/static-data/MetroRailTrackJsonSchema.ts)
|
|
230
|
+
- [DeparturesDirection](../src/schema-definitions/datasources/static-data/DeparturesDirectionsJsonSchema.ts)
|
|
231
|
+
- příklad vstupnich dat: viz zdroj data
|
|
232
|
+
- frekvence stahování
|
|
233
|
+
- Po nacteni jizdnich radu (fronta: vehicle-positions.ropidgtfs.checkForNewData)
|
|
234
|
+
- názvy rabbitmq front
|
|
235
|
+
- vehicle-positions.ropidgtfs.saveStaticData
|
|
231
236
|
### Data nám jsou posílána
|
|
232
237
|
|
|
233
238
|
**Dostupní poskytovatelé**:
|
|
@@ -531,6 +536,26 @@ Task se stará o aktualizaci cache pro public odjezdy. Pouští se pravidelně c
|
|
|
531
536
|
- data modely
|
|
532
537
|
- RopidGTFSPrecomputedDeparturesModel `ropidgtfs_precomputed_departures`
|
|
533
538
|
|
|
539
|
+
#### task _SaveStaticData_
|
|
540
|
+
|
|
541
|
+
Task se stará o aktualizaci statickych dat. Pouští se po dokončení načtení nových JŘ.
|
|
542
|
+
|
|
543
|
+
- vstupní rabbitmq fronta
|
|
544
|
+
- název: vehicle-positions.ropidgtfs.saveStaticData
|
|
545
|
+
- TTL: 5 minut
|
|
546
|
+
- závislé fronty (do kterých jsou odesílány zprávy z metody workeru)
|
|
547
|
+
- žádné
|
|
548
|
+
- datové zdroje
|
|
549
|
+
- Blob storage
|
|
550
|
+
- transformace
|
|
551
|
+
- [DeparturesDirectionTransformation](../src/integration-engine/ropid-gtfs/workers/timetables/tasks/transformations/DeparturesDirectionTransformation.ts)
|
|
552
|
+
- [MetroRailtrackDataTransformation](../src/integration-engine/ropid-gtfs/workers/timetables/tasks/transformations/MetroRailtrackDataTransformation.ts)
|
|
553
|
+
- data modely
|
|
554
|
+
- RopidDeparturesDirections `ropid_departures_directions`
|
|
555
|
+
- RopidGtfsMetroRailtrackGps `ropidgtfs_metro_railtrack_gps`
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
|
|
534
559
|
### PresetWorker
|
|
535
560
|
|
|
536
561
|
#### _Task ~ SavePresetsDataTask_
|
|
@@ -612,26 +637,6 @@ Task se stará o aktualizaci cache pro public odjezdy. Pouští se pravidelně c
|
|
|
612
637
|
- RopidGTFSMetadataModel `ropidgtfs_metadata`,
|
|
613
638
|
- RopidDeparturesPresetsModel `ropid_departures_presets`
|
|
614
639
|
|
|
615
|
-
### _RailtrackWorker_
|
|
616
|
-
|
|
617
|
-
Worker má na starost aktualizaci kolejových obvodů
|
|
618
|
-
|
|
619
|
-
#### _task: SaveMetroRailtrackDataToDBTask_
|
|
620
|
-
|
|
621
|
-
- vstupní rabbitmq fronta
|
|
622
|
-
- název: vehicle-positions.ropidgtfsrailtrack.saveMetroRailtrackDataToDB
|
|
623
|
-
- TTL: 5 minut
|
|
624
|
-
- parametry: `{ data: [{ track_section, line, gps_lat, gps_lon, stop_id }] }`
|
|
625
|
-
- validační schéma: [MetroRailtrackDataSchema](https://gitlab.com/operator-ict/golemio/code/modules/pid/-/blob/development/src/integration-engine/ropid-gtfs/workers/railtrack/tasks/schema/MetroRailtrackDataSchema.ts)
|
|
626
|
-
- závislé fronty (do kterých jsou odesílány zprávy z metody workeru)
|
|
627
|
-
- žádné
|
|
628
|
-
- datové zdroje
|
|
629
|
-
- statická data dodává ROPID
|
|
630
|
-
- transformace
|
|
631
|
-
- [MetroRailtrackDataTransformation](https://gitlab.com/operator-ict/golemio/code/modules/pid/-/blob/development/src/integration-engine/ropid-gtfs/workers/railtrack/tasks/transformations/MetroRailtrackDataTransformation.ts)
|
|
632
|
-
- data modely
|
|
633
|
-
- MetroRailtrackGPSModel `ropidgtfs_metro_railtrack_gps`
|
|
634
|
-
|
|
635
640
|
### _RopidVYMIWorker_
|
|
636
641
|
|
|
637
642
|
Worker má na starost přípravu podkladových dat pro infotexty pro odjezdové tabule a GTFS real-time alerty
|
package/package.json
CHANGED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RailtrackWorker = void 0;
|
|
4
|
-
const workers_1 = require("@golemio/core/dist/integration-engine/workers");
|
|
5
|
-
const ropid_gtfs_1 = require("../../../../schema-definitions/ropid-gtfs");
|
|
6
|
-
const SaveMetroRailtrackDataToDBTask_1 = require("./tasks/SaveMetroRailtrackDataToDBTask");
|
|
7
|
-
class RailtrackWorker extends workers_1.AbstractWorker {
|
|
8
|
-
constructor() {
|
|
9
|
-
super();
|
|
10
|
-
this.name = ropid_gtfs_1.RopidGTFS.name + "Railtrack";
|
|
11
|
-
// Register tasks
|
|
12
|
-
this.registerTask(new SaveMetroRailtrackDataToDBTask_1.SaveMetroRailtrackDataToDBTask(this.getQueuePrefix()));
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
exports.RailtrackWorker = RailtrackWorker;
|
|
16
|
-
//# sourceMappingURL=RailtrackWorker.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RailtrackWorker.js","sourceRoot":"","sources":["../../../../../src/integration-engine/ropid-gtfs/workers/railtrack/RailtrackWorker.ts"],"names":[],"mappings":";;;AAAA,2EAA+E;AAC/E,0EAA4C;AAC5C,2FAAwF;AAExF,MAAa,eAAgB,SAAQ,wBAAc;IAG/C;QACI,KAAK,EAAE,CAAC;QAHF,SAAI,GAAG,sBAAS,CAAC,IAAI,GAAG,WAAW,CAAC;QAK1C,iBAAiB;QACjB,IAAI,CAAC,YAAY,CAAC,IAAI,+DAA8B,CAAC,IAAI,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC;IACjF,CAAC;CACJ;AATD,0CASC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { AbstractTask } from "@golemio/core/dist/integration-engine/workers";
|
|
2
|
-
import { IMetroRailtrackDataInput } from "./interfaces/MetroRailtrackDataInterfaces";
|
|
3
|
-
import { MetroRailtrackDataValidationSchema } from "./schema/MetroRailtrackDataSchema";
|
|
4
|
-
export declare class SaveMetroRailtrackDataToDBTask extends AbstractTask<IMetroRailtrackDataInput> {
|
|
5
|
-
readonly queueName = "saveMetroRailtrackDataToDB";
|
|
6
|
-
readonly queueTtl: number;
|
|
7
|
-
readonly schema: typeof MetroRailtrackDataValidationSchema;
|
|
8
|
-
private readonly railtrackDataTransformation;
|
|
9
|
-
private readonly railtrackGPSRepository;
|
|
10
|
-
constructor(queuePrefix: string);
|
|
11
|
-
protected execute(data: IMetroRailtrackDataInput): Promise<void>;
|
|
12
|
-
}
|
package/dist/integration-engine/ropid-gtfs/workers/railtrack/tasks/SaveMetroRailtrackDataToDBTask.js
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.SaveMetroRailtrackDataToDBTask = void 0;
|
|
13
|
-
const workers_1 = require("@golemio/core/dist/integration-engine/workers");
|
|
14
|
-
const MetroRailtrackGPSRepository_1 = require("./data-access/MetroRailtrackGPSRepository");
|
|
15
|
-
const MetroRailtrackDataTransformation_1 = require("./transformations/MetroRailtrackDataTransformation");
|
|
16
|
-
const MetroRailtrackDataSchema_1 = require("./schema/MetroRailtrackDataSchema");
|
|
17
|
-
/*
|
|
18
|
-
* In case of update of the data for metro railtrack.
|
|
19
|
-
* It is necessary to restart the service to reload cache 'CacheMetroRailtrackLookup'.
|
|
20
|
-
*/
|
|
21
|
-
class SaveMetroRailtrackDataToDBTask extends workers_1.AbstractTask {
|
|
22
|
-
constructor(queuePrefix) {
|
|
23
|
-
super(queuePrefix);
|
|
24
|
-
this.queueName = "saveMetroRailtrackDataToDB";
|
|
25
|
-
this.queueTtl = 5 * 60 * 1000; // 5 minutes
|
|
26
|
-
this.schema = MetroRailtrackDataSchema_1.MetroRailtrackDataValidationSchema;
|
|
27
|
-
this.railtrackDataTransformation = new MetroRailtrackDataTransformation_1.MetroRailtrackDataTransformation();
|
|
28
|
-
this.railtrackGPSRepository = new MetroRailtrackGPSRepository_1.MetroRailtrackGPSRepository();
|
|
29
|
-
}
|
|
30
|
-
execute(data) {
|
|
31
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
32
|
-
const railtrackGPSData = yield this.railtrackDataTransformation.transform(data);
|
|
33
|
-
yield this.railtrackGPSRepository.saveData(railtrackGPSData);
|
|
34
|
-
});
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
exports.SaveMetroRailtrackDataToDBTask = SaveMetroRailtrackDataToDBTask;
|
|
38
|
-
//# sourceMappingURL=SaveMetroRailtrackDataToDBTask.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SaveMetroRailtrackDataToDBTask.js","sourceRoot":"","sources":["../../../../../../src/integration-engine/ropid-gtfs/workers/railtrack/tasks/SaveMetroRailtrackDataToDBTask.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2EAA6E;AAC7E,2FAAwF;AACxF,yGAAsG;AAEtG,gFAAuF;AAEvF;;;GAGG;AAEH,MAAa,8BAA+B,SAAQ,sBAAsC;IAQtF,YAAY,WAAmB;QAC3B,KAAK,CAAC,WAAW,CAAC,CAAC;QARP,cAAS,GAAG,4BAA4B,CAAC;QACzC,aAAQ,GAAG,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC,YAAY;QACtC,WAAM,GAAG,6DAAkC,CAAC;QAOxD,IAAI,CAAC,2BAA2B,GAAG,IAAI,mEAAgC,EAAE,CAAC;QAC1E,IAAI,CAAC,sBAAsB,GAAG,IAAI,yDAA2B,EAAE,CAAC;IACpE,CAAC;IAEe,OAAO,CAAC,IAA8B;;YAClD,MAAM,gBAAgB,GAAG,MAAM,IAAI,CAAC,2BAA2B,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;YAChF,MAAM,IAAI,CAAC,sBAAsB,CAAC,QAAQ,CAAC,gBAAgB,CAAC,CAAC;QACjE,CAAC;KAAA;CACJ;AAlBD,wEAkBC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MetroRailtrackGPSRepository.js","sourceRoot":"","sources":["../../../../../../../src/integration-engine/ropid-gtfs/workers/railtrack/tasks/data-access/MetroRailtrackGPSRepository.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuC;AACvC,oIAAiG;AACjG,2EAAoE;AACpE,yEAAqF;AACrF,6EAAwE;AACxE,mFAAkF;AAClF,oFAA6E;AAC7E,iEAAgE;AAIzD,IAAM,2BAA2B,yCAAjC,MAAM,2BAA4B,SAAQ,sBAAa;IAC1D;QACI,KAAK,CACD,6BAA6B,EAC7B;YACI,WAAW,EAAE,+CAAsB,CAAC,UAAU;YAC9C,QAAQ,EAAE,iBAAS;YACnB,yBAAyB,EAAE,+CAAsB,CAAC,cAAc;YAChE,UAAU,EAAE,YAAY;SAC3B,EACD,IAAI,uCAAmB,CAAC,6BAA6B,EAAE,+CAAsB,CAAC,eAAe,CAAC,CACjG,CAAC;QAGC,oBAAe,GAAG,CAAO,SAAiB,EAAE,QAAkB,EAA+C,EAAE;YAClH,IAAI;gBACA,OAAO,MAAM,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC;oBACrC,UAAU,EAAE;wBACR;4BACI,mBAAS,CAAC,EAAE,CACR,iBAAiB,EACjB,mBAAS,CAAC,GAAG,CAAC,UAAU,CAAC,EACzB,mBAAS,CAAC,EAAE,CACR,mBAAmB,EACnB,KAAK,EACL,mBAAS,CAAC,EAAE,CAAC,MAAM,EAAE,mBAAS,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC,EAClD,KAAK,EACL,mBAAS,CAAC,EAAE,CAAC,MAAM,EAAE,mBAAS,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC,EAClD,cAAc,EACd,mBAAS,CAAC,GAAG,CAAC,cAAc,CAAC,CAChC,CACJ;4BACD,aAAa;yBAChB;qBACJ;oBACD,KAAK,EAAE;wBACH,UAAU,EAAE,SAAS;wBACrB,QAAQ,EAAE;4BACN,CAAC,mBAAS,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,QAAQ;yBAC9B;qBACJ;oBACD,GAAG,EAAE,IAAI;oBACT,KAAK,EAAE,IAAI;iBACd,CAAC,CAAC;aACN;YAAC,OAAO,GAAG,EAAE;gBACV,MAAM,SAAS,GAAG,IAAI,6BAAY,CAC9B,IAAI,IAAI,CAAC,WAAW,CAAC,IAAI,0BAA0B,GAAG,CAAC,OAAO,EAAE,EAChE,IAAI,CAAC,WAAW,CAAC,IAAI,EACrB,GAAG,CACN,CAAC;gBAEF,aAAG,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC;gBACrB,MAAM,SAAS,CAAC;aACnB;QACL,CAAC,CAAA,CAAC;QAEK,aAAQ,GAAG,CACd,IAA8B,EAC9B,aAAa,GAAG,IAAI,EACpB,WAAW,GAAG,KAAK,EACc,EAAE;;YACnC,IAAI,WAAoC,CAAC;YAEzC,IAAI;gBACA,MAAM,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;gBAE1B,WAAW,GAAG,MAAM,CAAA,MAAA,IAAI,CAAC,cAAc,CAAC,SAAS,0CAAE,WAAW,EAAE,CAAA,CAAC;gBACjE,IAAI,aAAa,EAAE;oBACf,MAAM,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,EAAE,WAAW,EAAE,CAAC,CAAC;iBACvD;gBAED,MAAM,SAAS,GAAG,MAAM,IAAI,CAAC,cAAc,CAAC,UAAU,CAAyB,IAAI,EAAE;oBACjF,gBAAgB,EAAE,IAAI;oBACtB,SAAS,EAAE,WAAW;oBACtB,WAAW;iBACd,CAAC,CAAC;gBAEH,MAAM,CAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,MAAM,EAAE,CAAA,CAAC;gBAC5B,OAAO,SAAS,CAAC;aACpB;YAAC,OAAO,GAAG,EAAE;gBACV,MAAM,SAAS,GAAG,IAAI,6BAAY,CAC9B,IAAI,IAAI,CAAC,WAAW,CAAC,IAAI,0BAA0B,GAAG,CAAC,OAAO,EAAE,EAChE,IAAI,CAAC,WAAW,CAAC,IAAI,EACrB,GAAG,CACN,CAAC;gBAEF,aAAG,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC;gBACrB,MAAM,CAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,QAAQ,EAAE,CAAA,CAAC;gBAC9B,MAAM,SAAS,CAAC;aACnB;QACL,CAAC,CAAA,CAAC;IA9EF,CAAC;CA+EJ,CAAA;sCA3FY,2BAA2B;IADvC,IAAA,qBAAU,GAAE;;GACA,2BAA2B,CA2FvC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MetroRailtrackDataInterfaces.js","sourceRoot":"","sources":["../../../../../../../src/integration-engine/ropid-gtfs/workers/railtrack/tasks/interfaces/MetroRailtrackDataInterfaces.ts"],"names":[],"mappings":""}
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.MetroRailtrackDataValidationSchema = void 0;
|
|
13
|
-
const class_validator_1 = require("@golemio/core/dist/shared/class-validator");
|
|
14
|
-
const class_transformer_1 = require("@golemio/core/dist/shared/class-transformer");
|
|
15
|
-
class MetroRailtrackValidationSchema {
|
|
16
|
-
}
|
|
17
|
-
__decorate([
|
|
18
|
-
(0, class_validator_1.IsString)(),
|
|
19
|
-
__metadata("design:type", String)
|
|
20
|
-
], MetroRailtrackValidationSchema.prototype, "track_section", void 0);
|
|
21
|
-
__decorate([
|
|
22
|
-
(0, class_validator_1.IsString)(),
|
|
23
|
-
(0, class_validator_1.IsByteLength)(1, 1),
|
|
24
|
-
__metadata("design:type", String)
|
|
25
|
-
], MetroRailtrackValidationSchema.prototype, "line", void 0);
|
|
26
|
-
__decorate([
|
|
27
|
-
(0, class_validator_1.IsString)(),
|
|
28
|
-
(0, class_validator_1.IsLatitude)(),
|
|
29
|
-
__metadata("design:type", String)
|
|
30
|
-
], MetroRailtrackValidationSchema.prototype, "gps_lat", void 0);
|
|
31
|
-
__decorate([
|
|
32
|
-
(0, class_validator_1.IsString)(),
|
|
33
|
-
(0, class_validator_1.IsLongitude)(),
|
|
34
|
-
__metadata("design:type", String)
|
|
35
|
-
], MetroRailtrackValidationSchema.prototype, "gps_lon", void 0);
|
|
36
|
-
__decorate([
|
|
37
|
-
(0, class_validator_1.IsString)(),
|
|
38
|
-
__metadata("design:type", String)
|
|
39
|
-
], MetroRailtrackValidationSchema.prototype, "stop_id", void 0);
|
|
40
|
-
class MetroRailtrackDataValidationSchema {
|
|
41
|
-
}
|
|
42
|
-
exports.MetroRailtrackDataValidationSchema = MetroRailtrackDataValidationSchema;
|
|
43
|
-
__decorate([
|
|
44
|
-
(0, class_validator_1.IsArray)(),
|
|
45
|
-
(0, class_validator_1.ArrayMinSize)(1),
|
|
46
|
-
(0, class_validator_1.IsObject)({ each: true }),
|
|
47
|
-
(0, class_validator_1.ValidateNested)(),
|
|
48
|
-
(0, class_transformer_1.Type)(() => MetroRailtrackValidationSchema),
|
|
49
|
-
__metadata("design:type", Array)
|
|
50
|
-
], MetroRailtrackDataValidationSchema.prototype, "data", void 0);
|
|
51
|
-
//# sourceMappingURL=MetroRailtrackDataSchema.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MetroRailtrackDataSchema.js","sourceRoot":"","sources":["../../../../../../../src/integration-engine/ropid-gtfs/workers/railtrack/tasks/schema/MetroRailtrackDataSchema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+EASmD;AACnD,mFAAmE;AAGnE,MAAM,8BAA8B;CAkBnC;AAhBG;IADC,IAAA,0BAAQ,GAAE;;qEACY;AAIvB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,8BAAY,EAAC,CAAC,EAAE,CAAC,CAAC;;4DACL;AAId;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;+DACI;AAIjB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,6BAAW,GAAE;;+DACG;AAGjB;IADC,IAAA,0BAAQ,GAAE;;+DACM;AAGrB,MAAa,kCAAkC;CAO9C;AAPD,gFAOC;AADG;IALC,IAAA,yBAAO,GAAE;IACT,IAAA,8BAAY,EAAC,CAAC,CAAC;IACf,IAAA,0BAAQ,EAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACxB,IAAA,gCAAc,GAAE;IAChB,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8BAA8B,CAAC;;gEAClB"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { BaseTransformation, ITransformation } from "@golemio/core/dist/integration-engine/transformations";
|
|
2
|
-
import { MetroRailtrackGPSModel } from "../../../../../../schema-definitions/ropid-gtfs/models/railtrack/MetroRailtrackGPSModel";
|
|
3
|
-
import { IMetroRailtrackDataInput, IMetroRailtrack } from "../interfaces/MetroRailtrackDataInterfaces";
|
|
4
|
-
export declare class MetroRailtrackDataTransformation extends BaseTransformation implements ITransformation {
|
|
5
|
-
name: string;
|
|
6
|
-
transform: ({ data }: IMetroRailtrackDataInput) => Promise<MetroRailtrackGPSModel[]>;
|
|
7
|
-
protected transformElement: (element: IMetroRailtrack) => MetroRailtrackGPSModel;
|
|
8
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MetroRailtrackDataTransformation.js","sourceRoot":"","sources":["../../../../../../../src/integration-engine/ropid-gtfs/workers/railtrack/tasks/transformations/MetroRailtrackDataTransformation.ts"],"names":[],"mappings":";;;AAAA,2FAA4G;AAO5G,MAAa,gCAAiC,SAAQ,oCAAkB;IAAxE;;QACW,SAAI,GAAG,oBAAoB,CAAC;QAE5B,cAAS,GAAG,CAAC,EAAE,IAAI,EAA4B,EAAqC,EAAE;YACzF,MAAM,GAAG,GAA6B,EAAE,CAAC;YACzC,KAAK,MAAM,QAAQ,IAAI,IAAI,EAAE;gBACzB,MAAM,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAC;gBAChD,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;aACrB;YAED,OAAO,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;QAChC,CAAC,CAAC;QAEQ,qBAAgB,GAAG,CAAC,OAAwB,EAA0B,EAAE;YAC9E,OAAO;gBACH,QAAQ,EAAE,OAAO,CAAC,aAAa;gBAC/B,UAAU,EAAE,OAAO,CAAC,IAAI;gBACxB,WAAW,EAAE;oBACT,IAAI,EAAE,OAAO;oBACb,WAAW,EAAE,CAAC,MAAM,CAAC,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;iBACxF;gBACD,YAAY,EAAE,OAAO,CAAC,OAAO,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,OAAO;aACtC,CAAC;QAChC,CAAC,CAAC;IACN,CAAC;CAAA;AAxBD,4EAwBC"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|