UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

25 lines 1.04 kB
"use strict"; // Copyright (c) 2023 S44, LLC // Copyright Contributors to the CitrineOS Project // // SPDX-License-Identifier: Apache 2.0 Object.defineProperty(exports, "__esModule", { value: true }); exports.CreateOrUpdateVariableAttributeQuerySchema = exports.VariableAttributeQuerySchema = void 0; const base_1 = require("@citrineos/base"); exports.VariableAttributeQuerySchema = (0, base_1.QuerySchema)('VariableAttributeQuerySchema', [ ['stationId', 'string'], ['type', 'string'], ['value', 'string'], ['status', 'string'], ['component_evse_id', 'number'], ['component_evse_connectorId', 'number'], ['component_name', 'string'], ['component_instance', 'string'], ['variable_name', 'string'], ['variable_instance', 'string'], ], ['stationId']); exports.CreateOrUpdateVariableAttributeQuerySchema = (0, base_1.QuerySchema)('CreateOrUpdateVariableAttributeQuerySchema', [ ['stationId', 'string'], ['setOnCharger', 'boolean'], ], ['stationId']); //# sourceMappingURL=VariableAttribute.js.map