UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

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