UNPKG

@golemio/pid

Version:
41 lines 2.36 kB
"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); 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; return c > 3 && r && Object.defineProperty(target, key, r), r; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.JISInfotextCacheTranformation = void 0; const AbstractTransformation_1 = require("@golemio/core/dist/helpers/transformation/AbstractTransformation"); const tsyringe_1 = require("@golemio/core/dist/shared/tsyringe"); let JISInfotextCacheTranformation = class JISInfotextCacheTranformation extends AbstractTransformation_1.AbstractTransformation { constructor() { super(...arguments); this.name = "JISInfotextCacheTranformation"; this.transformInternal = (data) => { return { id: data.id, severity_level: data.severity_level, display_type: data.display_type, active_period_start: data.active_period_start.toISOString(), active_period_end: data.active_period_end?.toISOString() ?? null, repeat_enabled: data.repeat_enabled ?? false, repeat_time_start: data.repeat_time_start ?? null, repeat_time_end: data.repeat_time_end ?? null, description_text: { cs: data.description_text.cs, en: data.description_text.en ?? null, }, created_timestamp: data.created_timestamp.toISOString(), updated_timestamp: data.updated_timestamp.toISOString(), stops: data.stops?.map((stop) => ({ stop_id: stop.stop_id })) ?? [], }; }; } }; exports.JISInfotextCacheTranformation = JISInfotextCacheTranformation; exports.JISInfotextCacheTranformation = JISInfotextCacheTranformation = __decorate([ (0, tsyringe_1.injectable)() ], JISInfotextCacheTranformation); //# sourceMappingURL=JISInfotextCacheTranformation.js.map