UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

17 lines 454 B
// SPDX-FileCopyrightText: 2025 Contributors to the CitrineOS Project // // SPDX-License-Identifier: Apache-2.0 import { QuerySchema } from '@citrineos/base'; export const AuthorizationQuerySchema = QuerySchema('AuthorizationQuerySchema', [ { key: 'idToken', type: 'string', required: true, }, { key: 'type', type: 'string', required: false, }, ]); //# sourceMappingURL=Authorization.js.map