// This file was generated by liblab | https://liblab.com/ import { z } from 'zod'; import { error, errorRequest, errorResponse } from '../../common/error'; import { resourceIdentifier, resourceIdentifierRequest, resourceIdentifierResponse, } from '../../common/resource-identifier'; /** * The shape of the model inside the application code - what the users use */ export const createZoneOkResponse = z.object({ errors: z.array(error).optional(), data: z.array(resourceIdentifier).optional(), }); /** * * @typedef {CreateZoneOkResponse} createZoneOkResponse * @property {Error[]} * @property {ResourceIdentifier[]} */ export type CreateZoneOkResponse = z.infer; /** * The shape of the model mapping from the api schema into the application shape. * Is equal to application shape if all property names match the api schema */ export const createZoneOkResponseResponse = z .object({ errors: z.array(errorResponse).optional(), data: z.array(resourceIdentifierResponse).optional(), }) .transform((data) => ({ errors: data['errors'], data: data['data'], })); /** * The shape of the model mapping from the application shape into the api schema. * Is equal to application shape if all property names match the api schema */ export const createZoneOkResponseRequest = z .object({ errors: z.array(errorRequest).nullish(), data: z.array(resourceIdentifierRequest).nullish() }) .transform((data) => ({ errors: data['errors'], data: data['data'], }));