UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

66 lines 3.06 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; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.InstalledCertificate = void 0; const base_1 = require("@citrineos/base"); const sequelize_typescript_1 = require("sequelize-typescript"); const Location_1 = require("../Location"); let InstalledCertificate = class InstalledCertificate extends sequelize_typescript_1.Model { }; exports.InstalledCertificate = InstalledCertificate; InstalledCertificate.MODEL_NAME = base_1.OCPP2_0_1_Namespace.InstalledCertificate; __decorate([ (0, sequelize_typescript_1.ForeignKey)(() => Location_1.ChargingStation), (0, sequelize_typescript_1.Column)({ type: sequelize_typescript_1.DataType.STRING(36), allowNull: false, }), __metadata("design:type", String) ], InstalledCertificate.prototype, "stationId", void 0); __decorate([ (0, sequelize_typescript_1.Column)({ type: sequelize_typescript_1.DataType.STRING, allowNull: false, }), __metadata("design:type", String) ], InstalledCertificate.prototype, "hashAlgorithm", void 0); __decorate([ (0, sequelize_typescript_1.Column)({ type: sequelize_typescript_1.DataType.STRING, allowNull: false, }), __metadata("design:type", String) ], InstalledCertificate.prototype, "issuerNameHash", void 0); __decorate([ (0, sequelize_typescript_1.Column)({ type: sequelize_typescript_1.DataType.STRING, allowNull: false, }), __metadata("design:type", String) ], InstalledCertificate.prototype, "issuerKeyHash", void 0); __decorate([ (0, sequelize_typescript_1.Column)({ type: sequelize_typescript_1.DataType.STRING, allowNull: false, }), __metadata("design:type", String) ], InstalledCertificate.prototype, "serialNumber", void 0); __decorate([ (0, sequelize_typescript_1.Column)({ type: sequelize_typescript_1.DataType.ENUM('V2GRootCertificate', 'MORootCertificate', 'CSMSRootCertificate', 'V2GCertificateChain', 'ManufacturerRootCertificate'), allowNull: false, }), __metadata("design:type", String) ], InstalledCertificate.prototype, "certificateType", void 0); exports.InstalledCertificate = InstalledCertificate = __decorate([ sequelize_typescript_1.Table ], InstalledCertificate); //# sourceMappingURL=InstalledCertificate.js.map