UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

17 lines 475 B
// SPDX-FileCopyrightText: 2025 Contributors to the CitrineOS Project // // SPDX-License-Identifier: Apache-2.0 import { DEFAULT_TENANT_ID, QuerySchema } from '@citrineos/base'; export const TariffQuerySchema = QuerySchema('TariffQuerySchema', [ { key: 'tenantId', type: 'number', required: true, defaultValue: String(DEFAULT_TENANT_ID), }, { key: 'id', type: 'string', }, ]); //# sourceMappingURL=Tariff.js.map