import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SortDirection } from "./sortdirection.js"; /** * The field on which to sort the Employees */ export declare const EmployeesSortBy: { readonly FirstName: "first_name"; readonly LastName: "last_name"; readonly CreatedAt: "created_at"; readonly UpdatedAt: "updated_at"; }; /** * The field on which to sort the Employees */ export type EmployeesSortBy = ClosedEnum; export type EmployeesSort = { /** * The field on which to sort the Employees */ by?: EmployeesSortBy | undefined; /** * The direction in which to sort the results */ direction?: SortDirection | undefined; }; /** @internal */ export declare const EmployeesSortBy$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EmployeesSortBy$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace EmployeesSortBy$ { /** @deprecated use `EmployeesSortBy$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly FirstName: "first_name"; readonly LastName: "last_name"; readonly CreatedAt: "created_at"; readonly UpdatedAt: "updated_at"; }>; /** @deprecated use `EmployeesSortBy$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly FirstName: "first_name"; readonly LastName: "last_name"; readonly CreatedAt: "created_at"; readonly UpdatedAt: "updated_at"; }>; } /** @internal */ export declare const EmployeesSort$inboundSchema: z.ZodType; /** @internal */ export type EmployeesSort$Outbound = { by?: string | undefined; direction: string; }; /** @internal */ export declare const EmployeesSort$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace EmployeesSort$ { /** @deprecated use `EmployeesSort$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EmployeesSort$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EmployeesSort$Outbound` instead. */ type Outbound = EmployeesSort$Outbound; } export declare function employeesSortToJSON(employeesSort: EmployeesSort): string; export declare function employeesSortFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=employeessort.d.ts.map