Files
medreport_mrb2b/packages/billing/montonio/src/schema/montonio-server-env.schema.ts

16 lines
343 B
TypeScript

import { z } from 'zod';
export const MontonioServerEnvSchema = z
.object({
secretKey: z
.string({
required_error: `Please provide the variable MONTONIO_SECRET_KEY`,
})
.min(1),
apiUrl: z
.string({
required_error: `Please provide the variable MONTONIO_API_URL`,
})
.min(1),
});