UNPKG

voyageai

Version:

[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fvoyage-ai%2Ftypescript-sdk) [![npm shield](

40 lines (39 loc) 1.5 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.enum_ = void 0; const Schema_1 = require("../../Schema"); const createIdentitySchemaCreator_1 = require("../../utils/createIdentitySchemaCreator"); const getErrorMessageForIncorrectType_1 = require("../../utils/getErrorMessageForIncorrectType"); function enum_(values) { const validValues = new Set(values); const schemaCreator = (0, createIdentitySchemaCreator_1.createIdentitySchemaCreator)(Schema_1.SchemaType.ENUM, (value, { allowUnrecognizedEnumValues, breadcrumbsPrefix = [] } = {}) => { if (typeof value !== "string") { return { ok: false, errors: [ { path: breadcrumbsPrefix, message: (0, getErrorMessageForIncorrectType_1.getErrorMessageForIncorrectType)(value, "string"), }, ], }; } if (!validValues.has(value) && !allowUnrecognizedEnumValues) { return { ok: false, errors: [ { path: breadcrumbsPrefix, message: (0, getErrorMessageForIncorrectType_1.getErrorMessageForIncorrectType)(value, "enum"), }, ], }; } return { ok: true, value: value, }; }); return schemaCreator(); } exports.enum_ = enum_;