@standard-schema/utils
Advanced tools
Comparing version
{ | ||
"name": "@standard-schema/utils", | ||
"description": "The official runtime utils for Standard Schema", | ||
"version": "0.1.1", | ||
"version": "0.2.0", | ||
"license": "MIT", | ||
@@ -39,3 +39,3 @@ "author": "Fabian Hiller", | ||
"devDependencies": { | ||
"@standard-schema/spec": "npm:@jsr/standard-schema__spec@1.0.0-beta.0", | ||
"@standard-schema/spec": "npm:@jsr/standard-schema__spec@1.0.0-beta.2", | ||
"@vitest/coverage-v8": "2.1.2", | ||
@@ -42,0 +42,0 @@ "tsup": "^8.3.0", |
@@ -10,2 +10,3 @@ # Standard Schema Utils | ||
bun add @standard-schema/utils # bun | ||
deno add jsr:@standard-schema/utils # deno | ||
``` | ||
@@ -18,7 +19,7 @@ | ||
```ts | ||
import type { StandardSchema } from "@standard-schema/spec"; | ||
import type { v1 } from "@standard-schema/spec"; | ||
import { getDotPath } from "@standard-schema/utils"; | ||
async function getFormErrors(schema: StandardSchema, data: unknown) { | ||
const result = await schema["~validate"]({ value: data }); | ||
async function getFormErrors(schema: v1.StandardSchema, data: unknown) { | ||
const result = await schema["~standard"].validate({ value: data }); | ||
const formErrors: string[] = []; | ||
@@ -49,7 +50,10 @@ const fieldErrors: Record<string, string[]> = {}; | ||
```ts | ||
import type { StandardSchema } from "@standard-schema/spec"; | ||
import type { v1 } from "@standard-schema/spec"; | ||
import { SchemaError } from "@standard-schema/utils"; | ||
async function validateInput(schema: StandardSchema, data: unknown) { | ||
const result = await schema["~validate"]({ value: data }); | ||
async function validateInput<TSchema extends v1.StandardSchema>( | ||
schema: TSchema, | ||
data: unknown, | ||
): Promise<v1.InferOutput<TSchema>> { | ||
const result = await schema["~standard"].validate({ value: data }); | ||
if (result.issues) { | ||
@@ -56,0 +60,0 @@ throw new SchemaError(result.issues); |
8804
1.27%61
7.02%