UNPKG

@citrineos/base

Version:

The base module for OCPP v2.0.1 including all interfaces. This module is not intended to be used directly, but rather as a dependency for other modules.

24 lines 892 B
// SPDX-FileCopyrightText: 2025 Contributors to the CitrineOS Project // // SPDX-License-Identifier: Apache-2.0 import { z } from 'zod/v4'; import { BaseSchema } from './types/base.dto.js'; import { PartnerProfileSchema } from './types/ocpi.registration.js'; export const TenantPartnerSchema = BaseSchema.extend({ id: z.number().int().optional(), countryCode: z.string().nullable().optional(), partyId: z.string().nullable().optional(), partnerProfileOCPI: PartnerProfileSchema, }); export const TenantPartnerProps = TenantPartnerSchema.keyof().enum; export const TenantPartnerCreateSchema = TenantPartnerSchema.omit({ id: true, tenant: true, updatedAt: true, createdAt: true, }); export const tenantPartnerSchemas = { TenantPartner: TenantPartnerSchema, TenantPartnerCreate: TenantPartnerCreateSchema, }; //# sourceMappingURL=tenant.partner.dto.js.map