Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

zod

Package Overview
Dependencies
Maintainers
2
Versions
363
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zod - npm Package Compare versions

Comparing version 2.0.0-beta.4 to 2.0.0-beta.5

2

lib/src/parser.js

@@ -838,3 +838,3 @@ "use strict";

var checkCtx = {
makeError: function (arg) {
addError: function (arg) {
ERROR.addError(makeError(arg));

@@ -841,0 +841,0 @@ },

"use strict";
// import * as z from '.';
// const run = async () => {
// z.object({
// columns: z.record(z.string()),
// primaryKey: z.array(apiString({}).nonempty()).nonempty(),
// })._refinement(
// data => {
// for (const pkItem of data.primaryKey) {
// if (!(pkItem in data.columns)) {
// // We'd like to include pkItem in the error message
// return false;
// }
// }
// return true;
// },
// {
// message: `the primaryKey array must only contain keys from the columns record`,
// path: ['primaryKey'],
// },
// );
// };
// run();
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __generator = (this && this.__generator) || function (thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }
function step(op) {
if (f) throw new TypeError("Generator is already executing.");
while (_) try {
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
if (y = 0, t) op = [op[0] & 2, t.value];
switch (op[0]) {
case 0: case 1: t = op; break;
case 4: _.label++; return { value: op[1], done: false };
case 5: _.label++; y = op[1]; op = [0]; continue;
case 7: op = _.ops.pop(); _.trys.pop(); continue;
default:
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
};
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
result["default"] = mod;
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
var z = __importStar(require("."));
var run = function () { return __awaiter(void 0, void 0, void 0, function () {
var apiString;
return __generator(this, function (_a) {
apiString = z.string();
z.object({
columns: z.record(z.string()),
primaryKey: z.array(apiString.nonempty()).nonempty(),
})._refinement(function (data, ctx) {
var invalidPks = data.primaryKey.filter(function (pk) { return !Object.keys(data.columns).includes(pk); });
if (invalidPks.length) {
ctx.addError({
code: z.ZodErrorCode.custom_error,
message: "Invalid PKs: " + invalidPks.join(', '),
});
}
});
return [2 /*return*/];
});
}); };
run();
//# sourceMappingURL=playground.js.map

@@ -42,3 +42,3 @@ import { ParseParams, MakeErrorData } from '../parser';

check: (arg: T, ctx: {
makeError: (arg: MakeErrorData) => void;
addError: (arg: MakeErrorData) => void;
}) => any;

@@ -115,3 +115,3 @@ };

}) | ((arg: Output) => MakeErrorData)) => this;
protected _refinement: (refinement: InternalCheck<Output>['check']) => this;
_refinement: (refinement: InternalCheck<Output>['check']) => this;
constructor(def: Def);

@@ -118,0 +118,0 @@ abstract toJSON: () => object;

@@ -154,3 +154,3 @@ "use strict";

var setError = function () {
return ctx.makeError({
return ctx.addError({
code: index_1.ZodErrorCode.custom_error,

@@ -176,3 +176,3 @@ message: message,

var setError = function () {
return ctx.makeError(__assign({ code: index_1.ZodErrorCode.custom_error }, message(val)));
return ctx.addError(__assign({ code: index_1.ZodErrorCode.custom_error }, message(val)));
};

@@ -194,3 +194,3 @@ if (result instanceof Promise) {

var setError = function () {
return ctx.makeError(__assign({ code: index_1.ZodErrorCode.custom_error }, message));
return ctx.addError(__assign({ code: index_1.ZodErrorCode.custom_error }, message));
};

@@ -212,3 +212,3 @@ if (result instanceof Promise) {

if (!check(val)) {
ctx.makeError(typeof refinementData === 'function'
ctx.addError(typeof refinementData === 'function'
? refinementData(val)

@@ -215,0 +215,0 @@ : refinementData);

{
"name": "zod",
"version": "2.0.0-beta.4",
"version": "2.0.0-beta.5",
"description": "TypeScript-first schema declaration and validation library with static type inference",

@@ -5,0 +5,0 @@ "main": "./lib/src/index.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc