import { z } from "zod"; import type { ApiType, Data, Field, JsonApiDocument } from "../types"; export type FieldsMap = Record; export type FieldsSchema = { [K in keyof MapT]: z.ZodEffects>>>>; }; /** * JSON:API attribute fields for use in fields queries. * * @template DocumentT - The JSON:API document. */ export type AttributeFields = DocumentT["data"] extends Array ? keyof R["attributes"] : DocumentT["data"] extends Data ? keyof DocumentT["data"]["attributes"] : never; /** * Creates a Zod schema for JSON:API sparse fieldsets. * * @example * * * ```ts * import { booleanString } from "@clipboard-health/contract-core"; * import { * cursorPaginationQuery, * fieldsQuery, * type FilterMap, * filterQuery, * includeQuery, * sortQuery, * } from "@clipboard-health/json-api-nestjs"; * import { z } from "zod"; * * import type { * ArticleAttributeFields, * UserAttributeFields, * UserIncludeFields, * } from "../src/contract"; * * const articleFields = ["title"] as const satisfies readonly ArticleAttributeFields[]; * const userFields = ["age", "dateOfBirth"] as const satisfies readonly UserAttributeFields[]; * const userIncludeFields = [ * "articles", * "articles.comments", * ] as const satisfies readonly UserIncludeFields[]; * const userFilterMap = { * age: { * filters: ["eq", "gt"], * schema: z.coerce.number().int().positive().max(125), * }, * dateOfBirth: { * filters: ["gte"], * schema: z.coerce.date().min(new Date("1900-01-01")).max(new Date()), * }, * isActive: { * filters: ["eq"], * schema: booleanString, * }, * } as const satisfies FilterMap; * * /** * * Disclaimer: Just because JSON:API supports robust querying doesn’t mean your service should * * implement them as they may require database indexes, which have a cost. **Implement only access * * patterns required by clients.** * * * * The spec says that if clients provide fields the server doesn’t support, it **MUST** return 400 * * Bad Request, hence the `.strict()`. * *\/ * export const query = z * .object({ * ...cursorPaginationQuery(), * ...fieldsQuery({ article: articleFields, user: userFields }), * ...filterQuery(userFilterMap), * ...sortQuery(userFields), * ...includeQuery(userIncludeFields), * }) * .strict(); * ``` * * * * @see {@link https://jsonapi.org/format/#fetching-sparse-fieldsets JSON:API sparse fieldsets} */ export declare function fieldsQuery(parameters: Readonly): { fields: z.ZodOptional, "strict", z.ZodTypeAny, z.objectUtil.addQuestionMarks>, any> extends infer T ? { [k in keyof T]: T[k]; } : never, z.baseObjectInputType> extends infer T_1 ? { [k in keyof T_1]: T_1[k]; } : never>>; };