// This file was generated by liblab | https://liblab.com/ import { z } from 'zod'; import { error, errorRequest, errorResponse } from '../../common/error'; import { resourceGet, resourceGetRequest, resourceGetResponse } from './resource-get'; /** * The shape of the model inside the application code - what the users use */ export const getResourcesOkResponse = z.object({ errors: z.array(error).optional(), data: z.array(resourceGet).optional(), }); /** * * @typedef {GetResourcesOkResponse} getResourcesOkResponse * @property {Error[]} * @property {ResourceGet[]} */ export type GetResourcesOkResponse = 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 getResourcesOkResponseResponse = z .object({ errors: z.array(errorResponse).optional(), data: z.array(resourceGetResponse).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 getResourcesOkResponseRequest = z .object({ errors: z.array(errorRequest).nullish(), data: z.array(resourceGetRequest).nullish() }) .transform((data) => ({ errors: data['errors'], data: data['data'], }));