UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

15 lines 709 B
"use strict"; // Copyright Contributors to the CitrineOS Project // // SPDX-License-Identifier: Apache 2.0 Object.defineProperty(exports, "__esModule", { value: true }); exports.UpdateTlsCertificateQuerySchema = exports.TlsCertificateSchema = void 0; const base_1 = require("@citrineos/base"); exports.TlsCertificateSchema = (0, base_1.QuerySchema)('TlsCertificateSchema', [ ['certificateChain', 'string[]'], ['privateKey', 'string'], ['rootCA', 'string'], ['subCAKey', 'string'], ], ['certificateChain', 'privateKey']); exports.UpdateTlsCertificateQuerySchema = (0, base_1.QuerySchema)('UpdateTlsCertificateQuerySchema', [['id', 'string']], ['id']); //# sourceMappingURL=TlsCertificate.js.map