This commit is contained in:
21
frontend/node_modules/@standard-schema/spec/LICENSE
generated
vendored
Normal file
21
frontend/node_modules/@standard-schema/spec/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2024 Colin McDonnell
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
198
frontend/node_modules/@standard-schema/spec/README.md
generated
vendored
Normal file
198
frontend/node_modules/@standard-schema/spec/README.md
generated
vendored
Normal file
@@ -0,0 +1,198 @@
|
||||
<h1 align="center">
|
||||
<img alt="Standard Schema fire logo" loading="lazy" width="50" height="50" decoding="async" data-nimg="1" style="color:transparent" src="https://standardschema.dev/favicon.svg">
|
||||
</br>
|
||||
Standard Schema</h1>
|
||||
<p align="center">
|
||||
A family of specs for interoperable TypeScript
|
||||
<br/>
|
||||
<a href="https://standardschema.dev">standardschema.dev</a>
|
||||
</p>
|
||||
<br/>
|
||||
|
||||
<!-- start -->
|
||||
|
||||
The Standard Schema project is a set of interfaces that standardize the provision and consumption of shared functionality in the TypeScript ecosystem.
|
||||
|
||||
Its goal is to allow tools to accept a single input that includes all the types and capabilities they need— no library-specific adapters, no extra dependencies. The result is an ecosystem that's fair for implementers, friendly for consumers, and open for end users.
|
||||
|
||||
## The specifications
|
||||
|
||||
The specifications can be found below in their entirety. Libraries wishing to implement a spec can copy/paste the code block below into their codebase. They're also available at `@standard-schema/spec` on [npm](https://www.npmjs.com/package/@standard-schema/spec) and [JSR](https://jsr.io/@standard-schema/spec).
|
||||
|
||||
```ts
|
||||
// #########################
|
||||
// ### Standard Typed ###
|
||||
// #########################
|
||||
|
||||
/** The Standard Typed interface. This is a base type extended by other specs. */
|
||||
export interface StandardTypedV1<Input = unknown, Output = Input> {
|
||||
/** The Standard properties. */
|
||||
readonly "~standard": StandardTypedV1.Props<Input, Output>;
|
||||
}
|
||||
|
||||
export declare namespace StandardTypedV1 {
|
||||
/** The Standard Typed properties interface. */
|
||||
export interface Props<Input = unknown, Output = Input> {
|
||||
/** The version number of the standard. */
|
||||
readonly version: 1;
|
||||
/** The vendor name of the schema library. */
|
||||
readonly vendor: string;
|
||||
/** Inferred types associated with the schema. */
|
||||
readonly types?: Types<Input, Output> | undefined;
|
||||
}
|
||||
|
||||
/** The Standard Typed types interface. */
|
||||
export interface Types<Input = unknown, Output = Input> {
|
||||
/** The input type of the schema. */
|
||||
readonly input: Input;
|
||||
/** The output type of the schema. */
|
||||
readonly output: Output;
|
||||
}
|
||||
|
||||
/** Infers the input type of a Standard Typed. */
|
||||
export type InferInput<Schema extends StandardTypedV1> = NonNullable<
|
||||
Schema["~standard"]["types"]
|
||||
>["input"];
|
||||
|
||||
/** Infers the output type of a Standard Typed. */
|
||||
export type InferOutput<Schema extends StandardTypedV1> = NonNullable<
|
||||
Schema["~standard"]["types"]
|
||||
>["output"];
|
||||
}
|
||||
|
||||
// ##########################
|
||||
// ### Standard Schema ###
|
||||
// ##########################
|
||||
|
||||
/** The Standard Schema interface. */
|
||||
export interface StandardSchemaV1<Input = unknown, Output = Input> {
|
||||
/** The Standard Schema properties. */
|
||||
readonly "~standard": StandardSchemaV1.Props<Input, Output>;
|
||||
}
|
||||
|
||||
export declare namespace StandardSchemaV1 {
|
||||
/** The Standard Schema properties interface. */
|
||||
export interface Props<Input = unknown, Output = Input>
|
||||
extends StandardTypedV1.Props<Input, Output> {
|
||||
/** Validates unknown input values. */
|
||||
readonly validate: (
|
||||
value: unknown,
|
||||
options?: StandardSchemaV1.Options | undefined
|
||||
) => Result<Output> | Promise<Result<Output>>;
|
||||
}
|
||||
|
||||
/** The result interface of the validate function. */
|
||||
export type Result<Output> = SuccessResult<Output> | FailureResult;
|
||||
|
||||
/** The result interface if validation succeeds. */
|
||||
export interface SuccessResult<Output> {
|
||||
/** The typed output value. */
|
||||
readonly value: Output;
|
||||
/** A falsy value for `issues` indicates success. */
|
||||
readonly issues?: undefined;
|
||||
}
|
||||
|
||||
export interface Options {
|
||||
/** Explicit support for additional vendor-specific parameters, if needed. */
|
||||
readonly libraryOptions?: Record<string, unknown> | undefined;
|
||||
}
|
||||
|
||||
/** The result interface if validation fails. */
|
||||
export interface FailureResult {
|
||||
/** The issues of failed validation. */
|
||||
readonly issues: ReadonlyArray<Issue>;
|
||||
}
|
||||
|
||||
/** The issue interface of the failure output. */
|
||||
export interface Issue {
|
||||
/** The error message of the issue. */
|
||||
readonly message: string;
|
||||
/** The path of the issue, if any. */
|
||||
readonly path?: ReadonlyArray<PropertyKey | PathSegment> | undefined;
|
||||
}
|
||||
|
||||
/** The path segment interface of the issue. */
|
||||
export interface PathSegment {
|
||||
/** The key representing a path segment. */
|
||||
readonly key: PropertyKey;
|
||||
}
|
||||
|
||||
/** The Standard types interface. */
|
||||
export interface Types<Input = unknown, Output = Input>
|
||||
extends StandardTypedV1.Types<Input, Output> {}
|
||||
|
||||
/** Infers the input type of a Standard. */
|
||||
export type InferInput<Schema extends StandardTypedV1> =
|
||||
StandardTypedV1.InferInput<Schema>;
|
||||
|
||||
/** Infers the output type of a Standard. */
|
||||
export type InferOutput<Schema extends StandardTypedV1> =
|
||||
StandardTypedV1.InferOutput<Schema>;
|
||||
}
|
||||
|
||||
// ###############################
|
||||
// ### Standard JSON Schema ###
|
||||
// ###############################
|
||||
|
||||
/** The Standard JSON Schema interface. */
|
||||
export interface StandardJSONSchemaV1<Input = unknown, Output = Input> {
|
||||
/** The Standard JSON Schema properties. */
|
||||
readonly "~standard": StandardJSONSchemaV1.Props<Input, Output>;
|
||||
}
|
||||
|
||||
export declare namespace StandardJSONSchemaV1 {
|
||||
/** The Standard JSON Schema properties interface. */
|
||||
export interface Props<Input = unknown, Output = Input>
|
||||
extends StandardTypedV1.Props<Input, Output> {
|
||||
/** Methods for generating the input/output JSON Schema. */
|
||||
readonly jsonSchema: StandardJSONSchemaV1.Converter;
|
||||
}
|
||||
|
||||
/** The Standard JSON Schema converter interface. */
|
||||
export interface Converter {
|
||||
/** Converts the input type to JSON Schema. May throw if conversion is not supported. */
|
||||
readonly input: (
|
||||
options: StandardJSONSchemaV1.Options
|
||||
) => Record<string, unknown>;
|
||||
/** Converts the output type to JSON Schema. May throw if conversion is not supported. */
|
||||
readonly output: (
|
||||
options: StandardJSONSchemaV1.Options
|
||||
) => Record<string, unknown>;
|
||||
}
|
||||
|
||||
/**
|
||||
* The target version of the generated JSON Schema.
|
||||
*
|
||||
* It is *strongly recommended* that implementers support `"draft-2020-12"` and `"draft-07"`, as they are both in wide use. All other targets can be implemented on a best-effort basis. Libraries should throw if they don't support a specified target.
|
||||
*
|
||||
* The `"openapi-3.0"` target is intended as a standardized specifier for OpenAPI 3.0 which is a superset of JSON Schema `"draft-04"`.
|
||||
*/
|
||||
export type Target =
|
||||
| "draft-2020-12"
|
||||
| "draft-07"
|
||||
| "openapi-3.0"
|
||||
// Accepts any string for future targets while preserving autocomplete
|
||||
| ({} & string);
|
||||
|
||||
/** The options for the input/output methods. */
|
||||
export interface Options {
|
||||
/** Specifies the target version of the generated JSON Schema. Support for all versions is on a best-effort basis. If a given version is not supported, the library should throw. */
|
||||
readonly target: Target;
|
||||
|
||||
/** Explicit support for additional vendor-specific parameters, if needed. */
|
||||
readonly libraryOptions?: Record<string, unknown> | undefined;
|
||||
}
|
||||
|
||||
/** The Standard types interface. */
|
||||
export interface Types<Input = unknown, Output = Input>
|
||||
extends StandardTypedV1.Types<Input, Output> {}
|
||||
|
||||
/** Infers the input type of a Standard. */
|
||||
export type InferInput<Schema extends StandardTypedV1> =
|
||||
StandardTypedV1.InferInput<Schema>;
|
||||
|
||||
/** Infers the output type of a Standard. */
|
||||
export type InferOutput<Schema extends StandardTypedV1> =
|
||||
StandardTypedV1.InferOutput<Schema>;
|
||||
}
|
||||
```
|
||||
18
frontend/node_modules/@standard-schema/spec/dist/index.cjs
generated
vendored
Normal file
18
frontend/node_modules/@standard-schema/spec/dist/index.cjs
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
"use strict";
|
||||
var __defProp = Object.defineProperty;
|
||||
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
||||
var __getOwnPropNames = Object.getOwnPropertyNames;
|
||||
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
||||
var __copyProps = (to, from, except, desc) => {
|
||||
if (from && typeof from === "object" || typeof from === "function") {
|
||||
for (let key of __getOwnPropNames(from))
|
||||
if (!__hasOwnProp.call(to, key) && key !== except)
|
||||
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
||||
}
|
||||
return to;
|
||||
};
|
||||
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
||||
|
||||
// src/index.ts
|
||||
var src_exports = {};
|
||||
module.exports = __toCommonJS(src_exports);
|
||||
119
frontend/node_modules/@standard-schema/spec/dist/index.d.cts
generated
vendored
Normal file
119
frontend/node_modules/@standard-schema/spec/dist/index.d.cts
generated
vendored
Normal file
@@ -0,0 +1,119 @@
|
||||
/** The Standard Typed interface. This is a base type extended by other specs. */
|
||||
interface StandardTypedV1<Input = unknown, Output = Input> {
|
||||
/** The Standard properties. */
|
||||
readonly "~standard": StandardTypedV1.Props<Input, Output>;
|
||||
}
|
||||
declare namespace StandardTypedV1 {
|
||||
/** The Standard Typed properties interface. */
|
||||
interface Props<Input = unknown, Output = Input> {
|
||||
/** The version number of the standard. */
|
||||
readonly version: 1;
|
||||
/** The vendor name of the schema library. */
|
||||
readonly vendor: string;
|
||||
/** Inferred types associated with the schema. */
|
||||
readonly types?: Types<Input, Output> | undefined;
|
||||
}
|
||||
/** The Standard Typed types interface. */
|
||||
interface Types<Input = unknown, Output = Input> {
|
||||
/** The input type of the schema. */
|
||||
readonly input: Input;
|
||||
/** The output type of the schema. */
|
||||
readonly output: Output;
|
||||
}
|
||||
/** Infers the input type of a Standard Typed. */
|
||||
type InferInput<Schema extends StandardTypedV1> = NonNullable<Schema["~standard"]["types"]>["input"];
|
||||
/** Infers the output type of a Standard Typed. */
|
||||
type InferOutput<Schema extends StandardTypedV1> = NonNullable<Schema["~standard"]["types"]>["output"];
|
||||
}
|
||||
/** The Standard Schema interface. */
|
||||
interface StandardSchemaV1<Input = unknown, Output = Input> {
|
||||
/** The Standard Schema properties. */
|
||||
readonly "~standard": StandardSchemaV1.Props<Input, Output>;
|
||||
}
|
||||
declare namespace StandardSchemaV1 {
|
||||
/** The Standard Schema properties interface. */
|
||||
interface Props<Input = unknown, Output = Input> extends StandardTypedV1.Props<Input, Output> {
|
||||
/** Validates unknown input values. */
|
||||
readonly validate: (value: unknown, options?: StandardSchemaV1.Options | undefined) => Result<Output> | Promise<Result<Output>>;
|
||||
}
|
||||
/** The result interface of the validate function. */
|
||||
type Result<Output> = SuccessResult<Output> | FailureResult;
|
||||
/** The result interface if validation succeeds. */
|
||||
interface SuccessResult<Output> {
|
||||
/** The typed output value. */
|
||||
readonly value: Output;
|
||||
/** A falsy value for `issues` indicates success. */
|
||||
readonly issues?: undefined;
|
||||
}
|
||||
interface Options {
|
||||
/** Explicit support for additional vendor-specific parameters, if needed. */
|
||||
readonly libraryOptions?: Record<string, unknown> | undefined;
|
||||
}
|
||||
/** The result interface if validation fails. */
|
||||
interface FailureResult {
|
||||
/** The issues of failed validation. */
|
||||
readonly issues: ReadonlyArray<Issue>;
|
||||
}
|
||||
/** The issue interface of the failure output. */
|
||||
interface Issue {
|
||||
/** The error message of the issue. */
|
||||
readonly message: string;
|
||||
/** The path of the issue, if any. */
|
||||
readonly path?: ReadonlyArray<PropertyKey | PathSegment> | undefined;
|
||||
}
|
||||
/** The path segment interface of the issue. */
|
||||
interface PathSegment {
|
||||
/** The key representing a path segment. */
|
||||
readonly key: PropertyKey;
|
||||
}
|
||||
/** The Standard types interface. */
|
||||
interface Types<Input = unknown, Output = Input> extends StandardTypedV1.Types<Input, Output> {
|
||||
}
|
||||
/** Infers the input type of a Standard. */
|
||||
type InferInput<Schema extends StandardTypedV1> = StandardTypedV1.InferInput<Schema>;
|
||||
/** Infers the output type of a Standard. */
|
||||
type InferOutput<Schema extends StandardTypedV1> = StandardTypedV1.InferOutput<Schema>;
|
||||
}
|
||||
/** The Standard JSON Schema interface. */
|
||||
interface StandardJSONSchemaV1<Input = unknown, Output = Input> {
|
||||
/** The Standard JSON Schema properties. */
|
||||
readonly "~standard": StandardJSONSchemaV1.Props<Input, Output>;
|
||||
}
|
||||
declare namespace StandardJSONSchemaV1 {
|
||||
/** The Standard JSON Schema properties interface. */
|
||||
interface Props<Input = unknown, Output = Input> extends StandardTypedV1.Props<Input, Output> {
|
||||
/** Methods for generating the input/output JSON Schema. */
|
||||
readonly jsonSchema: StandardJSONSchemaV1.Converter;
|
||||
}
|
||||
/** The Standard JSON Schema converter interface. */
|
||||
interface Converter {
|
||||
/** Converts the input type to JSON Schema. May throw if conversion is not supported. */
|
||||
readonly input: (options: StandardJSONSchemaV1.Options) => Record<string, unknown>;
|
||||
/** Converts the output type to JSON Schema. May throw if conversion is not supported. */
|
||||
readonly output: (options: StandardJSONSchemaV1.Options) => Record<string, unknown>;
|
||||
}
|
||||
/**
|
||||
* The target version of the generated JSON Schema.
|
||||
*
|
||||
* It is *strongly recommended* that implementers support `"draft-2020-12"` and `"draft-07"`, as they are both in wide use. All other targets can be implemented on a best-effort basis. Libraries should throw if they don't support a specified target.
|
||||
*
|
||||
* The `"openapi-3.0"` target is intended as a standardized specifier for OpenAPI 3.0 which is a superset of JSON Schema `"draft-04"`.
|
||||
*/
|
||||
type Target = "draft-2020-12" | "draft-07" | "openapi-3.0" | ({} & string);
|
||||
/** The options for the input/output methods. */
|
||||
interface Options {
|
||||
/** Specifies the target version of the generated JSON Schema. Support for all versions is on a best-effort basis. If a given version is not supported, the library should throw. */
|
||||
readonly target: Target;
|
||||
/** Explicit support for additional vendor-specific parameters, if needed. */
|
||||
readonly libraryOptions?: Record<string, unknown> | undefined;
|
||||
}
|
||||
/** The Standard types interface. */
|
||||
interface Types<Input = unknown, Output = Input> extends StandardTypedV1.Types<Input, Output> {
|
||||
}
|
||||
/** Infers the input type of a Standard. */
|
||||
type InferInput<Schema extends StandardTypedV1> = StandardTypedV1.InferInput<Schema>;
|
||||
/** Infers the output type of a Standard. */
|
||||
type InferOutput<Schema extends StandardTypedV1> = StandardTypedV1.InferOutput<Schema>;
|
||||
}
|
||||
|
||||
export { StandardJSONSchemaV1, StandardSchemaV1, StandardTypedV1 };
|
||||
119
frontend/node_modules/@standard-schema/spec/dist/index.d.ts
generated
vendored
Normal file
119
frontend/node_modules/@standard-schema/spec/dist/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,119 @@
|
||||
/** The Standard Typed interface. This is a base type extended by other specs. */
|
||||
interface StandardTypedV1<Input = unknown, Output = Input> {
|
||||
/** The Standard properties. */
|
||||
readonly "~standard": StandardTypedV1.Props<Input, Output>;
|
||||
}
|
||||
declare namespace StandardTypedV1 {
|
||||
/** The Standard Typed properties interface. */
|
||||
interface Props<Input = unknown, Output = Input> {
|
||||
/** The version number of the standard. */
|
||||
readonly version: 1;
|
||||
/** The vendor name of the schema library. */
|
||||
readonly vendor: string;
|
||||
/** Inferred types associated with the schema. */
|
||||
readonly types?: Types<Input, Output> | undefined;
|
||||
}
|
||||
/** The Standard Typed types interface. */
|
||||
interface Types<Input = unknown, Output = Input> {
|
||||
/** The input type of the schema. */
|
||||
readonly input: Input;
|
||||
/** The output type of the schema. */
|
||||
readonly output: Output;
|
||||
}
|
||||
/** Infers the input type of a Standard Typed. */
|
||||
type InferInput<Schema extends StandardTypedV1> = NonNullable<Schema["~standard"]["types"]>["input"];
|
||||
/** Infers the output type of a Standard Typed. */
|
||||
type InferOutput<Schema extends StandardTypedV1> = NonNullable<Schema["~standard"]["types"]>["output"];
|
||||
}
|
||||
/** The Standard Schema interface. */
|
||||
interface StandardSchemaV1<Input = unknown, Output = Input> {
|
||||
/** The Standard Schema properties. */
|
||||
readonly "~standard": StandardSchemaV1.Props<Input, Output>;
|
||||
}
|
||||
declare namespace StandardSchemaV1 {
|
||||
/** The Standard Schema properties interface. */
|
||||
interface Props<Input = unknown, Output = Input> extends StandardTypedV1.Props<Input, Output> {
|
||||
/** Validates unknown input values. */
|
||||
readonly validate: (value: unknown, options?: StandardSchemaV1.Options | undefined) => Result<Output> | Promise<Result<Output>>;
|
||||
}
|
||||
/** The result interface of the validate function. */
|
||||
type Result<Output> = SuccessResult<Output> | FailureResult;
|
||||
/** The result interface if validation succeeds. */
|
||||
interface SuccessResult<Output> {
|
||||
/** The typed output value. */
|
||||
readonly value: Output;
|
||||
/** A falsy value for `issues` indicates success. */
|
||||
readonly issues?: undefined;
|
||||
}
|
||||
interface Options {
|
||||
/** Explicit support for additional vendor-specific parameters, if needed. */
|
||||
readonly libraryOptions?: Record<string, unknown> | undefined;
|
||||
}
|
||||
/** The result interface if validation fails. */
|
||||
interface FailureResult {
|
||||
/** The issues of failed validation. */
|
||||
readonly issues: ReadonlyArray<Issue>;
|
||||
}
|
||||
/** The issue interface of the failure output. */
|
||||
interface Issue {
|
||||
/** The error message of the issue. */
|
||||
readonly message: string;
|
||||
/** The path of the issue, if any. */
|
||||
readonly path?: ReadonlyArray<PropertyKey | PathSegment> | undefined;
|
||||
}
|
||||
/** The path segment interface of the issue. */
|
||||
interface PathSegment {
|
||||
/** The key representing a path segment. */
|
||||
readonly key: PropertyKey;
|
||||
}
|
||||
/** The Standard types interface. */
|
||||
interface Types<Input = unknown, Output = Input> extends StandardTypedV1.Types<Input, Output> {
|
||||
}
|
||||
/** Infers the input type of a Standard. */
|
||||
type InferInput<Schema extends StandardTypedV1> = StandardTypedV1.InferInput<Schema>;
|
||||
/** Infers the output type of a Standard. */
|
||||
type InferOutput<Schema extends StandardTypedV1> = StandardTypedV1.InferOutput<Schema>;
|
||||
}
|
||||
/** The Standard JSON Schema interface. */
|
||||
interface StandardJSONSchemaV1<Input = unknown, Output = Input> {
|
||||
/** The Standard JSON Schema properties. */
|
||||
readonly "~standard": StandardJSONSchemaV1.Props<Input, Output>;
|
||||
}
|
||||
declare namespace StandardJSONSchemaV1 {
|
||||
/** The Standard JSON Schema properties interface. */
|
||||
interface Props<Input = unknown, Output = Input> extends StandardTypedV1.Props<Input, Output> {
|
||||
/** Methods for generating the input/output JSON Schema. */
|
||||
readonly jsonSchema: StandardJSONSchemaV1.Converter;
|
||||
}
|
||||
/** The Standard JSON Schema converter interface. */
|
||||
interface Converter {
|
||||
/** Converts the input type to JSON Schema. May throw if conversion is not supported. */
|
||||
readonly input: (options: StandardJSONSchemaV1.Options) => Record<string, unknown>;
|
||||
/** Converts the output type to JSON Schema. May throw if conversion is not supported. */
|
||||
readonly output: (options: StandardJSONSchemaV1.Options) => Record<string, unknown>;
|
||||
}
|
||||
/**
|
||||
* The target version of the generated JSON Schema.
|
||||
*
|
||||
* It is *strongly recommended* that implementers support `"draft-2020-12"` and `"draft-07"`, as they are both in wide use. All other targets can be implemented on a best-effort basis. Libraries should throw if they don't support a specified target.
|
||||
*
|
||||
* The `"openapi-3.0"` target is intended as a standardized specifier for OpenAPI 3.0 which is a superset of JSON Schema `"draft-04"`.
|
||||
*/
|
||||
type Target = "draft-2020-12" | "draft-07" | "openapi-3.0" | ({} & string);
|
||||
/** The options for the input/output methods. */
|
||||
interface Options {
|
||||
/** Specifies the target version of the generated JSON Schema. Support for all versions is on a best-effort basis. If a given version is not supported, the library should throw. */
|
||||
readonly target: Target;
|
||||
/** Explicit support for additional vendor-specific parameters, if needed. */
|
||||
readonly libraryOptions?: Record<string, unknown> | undefined;
|
||||
}
|
||||
/** The Standard types interface. */
|
||||
interface Types<Input = unknown, Output = Input> extends StandardTypedV1.Types<Input, Output> {
|
||||
}
|
||||
/** Infers the input type of a Standard. */
|
||||
type InferInput<Schema extends StandardTypedV1> = StandardTypedV1.InferInput<Schema>;
|
||||
/** Infers the output type of a Standard. */
|
||||
type InferOutput<Schema extends StandardTypedV1> = StandardTypedV1.InferOutput<Schema>;
|
||||
}
|
||||
|
||||
export { StandardJSONSchemaV1, StandardSchemaV1, StandardTypedV1 };
|
||||
0
frontend/node_modules/@standard-schema/spec/dist/index.js
generated
vendored
Normal file
0
frontend/node_modules/@standard-schema/spec/dist/index.js
generated
vendored
Normal file
52
frontend/node_modules/@standard-schema/spec/package.json
generated
vendored
Normal file
52
frontend/node_modules/@standard-schema/spec/package.json
generated
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
{
|
||||
"name": "@standard-schema/spec",
|
||||
"description": "A family of specs for interoperable TypeScript",
|
||||
"version": "1.1.0",
|
||||
"license": "MIT",
|
||||
"author": "Colin McDonnell",
|
||||
"homepage": "https://standardschema.dev",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/standard-schema/standard-schema"
|
||||
},
|
||||
"keywords": [
|
||||
"typescript",
|
||||
"schema",
|
||||
"validation",
|
||||
"standard",
|
||||
"interface"
|
||||
],
|
||||
"type": "module",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"standard-schema-spec": "./src/index.ts",
|
||||
"import": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"default": "./dist/index.js"
|
||||
},
|
||||
"require": {
|
||||
"types": "./dist/index.d.cts",
|
||||
"default": "./dist/index.cjs"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sideEffects": false,
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tsup": "^8.3.0",
|
||||
"typescript": "^5.6.2"
|
||||
},
|
||||
"scripts": {
|
||||
"lint": "pnpm biome lint ./src",
|
||||
"format": "pnpm biome format --write ./src",
|
||||
"check": "pnpm biome check ./src",
|
||||
"build": "tsup"
|
||||
}
|
||||
}
|
||||
21
frontend/node_modules/@standard-schema/utils/LICENSE
generated
vendored
Normal file
21
frontend/node_modules/@standard-schema/utils/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2024 Fabian Hiller
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
61
frontend/node_modules/@standard-schema/utils/README.md
generated
vendored
Normal file
61
frontend/node_modules/@standard-schema/utils/README.md
generated
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
# Standard Schema Utils
|
||||
|
||||
There are two common tasks that third-party libraries perform after validation fails. The first is to flatten the issues by creating a dot path to more easily associate the issues with the input data. This is commonly used in form libraries. The second is to throw an error that contains all the issue information. To simplify both tasks, Standard Schema also ships a utils package that provides a `getDotPath` function and a `SchemaError` class.
|
||||
|
||||
```sh
|
||||
npm install @standard-schema/utils # npm
|
||||
yarn add @standard-schema/utils # yarn
|
||||
pnpm add @standard-schema/utils # pnpm
|
||||
bun add @standard-schema/utils # bun
|
||||
deno add jsr:@standard-schema/utils # deno
|
||||
```
|
||||
|
||||
## Get Dot Path
|
||||
|
||||
To generate a dot path, simply pass an issue to the `getDotPath` function. If the issue does not contain a path or the path contains a key that is not of type `string` or `number`, the function returns `null`.
|
||||
|
||||
```ts
|
||||
import type { StandardSchemaV1 } from "@standard-schema/spec";
|
||||
import { getDotPath } from "@standard-schema/utils";
|
||||
|
||||
async function getFormErrors(schema: StandardSchemaV1, data: unknown) {
|
||||
const result = await schema["~standard"].validate(data);
|
||||
const formErrors: string[] = [];
|
||||
const fieldErrors: Record<string, string[]> = {};
|
||||
if (result.issues) {
|
||||
for (const issue of result.issues) {
|
||||
const dotPath = getDotPath(issue);
|
||||
if (dotPath) {
|
||||
if (fieldErrors[dotPath]) {
|
||||
fieldErrors[dotPath].push(issue.message);
|
||||
} else {
|
||||
fieldErrors[dotPath] = [issue.message];
|
||||
}
|
||||
} else {
|
||||
formErrors.push(issue.message);
|
||||
}
|
||||
}
|
||||
}
|
||||
return { formErrors, fieldErrors };
|
||||
}
|
||||
```
|
||||
|
||||
## Schema Error
|
||||
|
||||
To throw an error that contains all issue information, simply pass the issues of the failed schema validation to the `SchemaError` class. The `SchemaError` class extends the `Error` class with an `issues` property that contains all the issues.
|
||||
|
||||
```ts
|
||||
import type { StandardSchemaV1 } from "@standard-schema/spec";
|
||||
import { SchemaError } from "@standard-schema/utils";
|
||||
|
||||
async function validateInput<TSchema extends StandardSchemaV1>(
|
||||
schema: TSchema,
|
||||
data: unknown,
|
||||
): Promise<StandardSchemaV1.InferOutput<TSchema>> {
|
||||
const result = await schema["~standard"].validate(data);
|
||||
if (result.issues) {
|
||||
throw new SchemaError(result.issues);
|
||||
}
|
||||
return result.value;
|
||||
}
|
||||
```
|
||||
70
frontend/node_modules/@standard-schema/utils/dist/index.cjs
generated
vendored
Normal file
70
frontend/node_modules/@standard-schema/utils/dist/index.cjs
generated
vendored
Normal file
@@ -0,0 +1,70 @@
|
||||
"use strict";
|
||||
var __defProp = Object.defineProperty;
|
||||
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
||||
var __getOwnPropNames = Object.getOwnPropertyNames;
|
||||
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
||||
var __export = (target, all) => {
|
||||
for (var name in all)
|
||||
__defProp(target, name, { get: all[name], enumerable: true });
|
||||
};
|
||||
var __copyProps = (to, from, except, desc) => {
|
||||
if (from && typeof from === "object" || typeof from === "function") {
|
||||
for (let key of __getOwnPropNames(from))
|
||||
if (!__hasOwnProp.call(to, key) && key !== except)
|
||||
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
||||
}
|
||||
return to;
|
||||
};
|
||||
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
||||
|
||||
// src/index.ts
|
||||
var src_exports = {};
|
||||
__export(src_exports, {
|
||||
SchemaError: () => SchemaError,
|
||||
getDotPath: () => getDotPath
|
||||
});
|
||||
module.exports = __toCommonJS(src_exports);
|
||||
|
||||
// src/getDotPath/getDotPath.ts
|
||||
function getDotPath(issue) {
|
||||
if (issue.path?.length) {
|
||||
let dotPath = "";
|
||||
for (const item of issue.path) {
|
||||
const key = typeof item === "object" ? item.key : item;
|
||||
if (typeof key === "string" || typeof key === "number") {
|
||||
if (dotPath) {
|
||||
dotPath += `.${key}`;
|
||||
} else {
|
||||
dotPath += key;
|
||||
}
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
return dotPath;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
// src/SchemaError/SchemaError.ts
|
||||
var SchemaError = class extends Error {
|
||||
/**
|
||||
* The schema issues.
|
||||
*/
|
||||
issues;
|
||||
/**
|
||||
* Creates a schema error with useful information.
|
||||
*
|
||||
* @param issues The schema issues.
|
||||
*/
|
||||
constructor(issues) {
|
||||
super(issues[0].message);
|
||||
this.name = "SchemaError";
|
||||
this.issues = issues;
|
||||
}
|
||||
};
|
||||
// Annotate the CommonJS export names for ESM import in node:
|
||||
0 && (module.exports = {
|
||||
SchemaError,
|
||||
getDotPath
|
||||
});
|
||||
28
frontend/node_modules/@standard-schema/utils/dist/index.d.cts
generated
vendored
Normal file
28
frontend/node_modules/@standard-schema/utils/dist/index.d.cts
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
import { StandardSchemaV1 } from '@standard-schema/spec';
|
||||
|
||||
/**
|
||||
* Creates and returns the dot path of an issue if possible.
|
||||
*
|
||||
* @param issue The issue to get the dot path from.
|
||||
*
|
||||
* @returns The dot path or null.
|
||||
*/
|
||||
declare function getDotPath(issue: StandardSchemaV1.Issue): string | null;
|
||||
|
||||
/**
|
||||
* A schema error with useful information.
|
||||
*/
|
||||
declare class SchemaError extends Error {
|
||||
/**
|
||||
* The schema issues.
|
||||
*/
|
||||
readonly issues: ReadonlyArray<StandardSchemaV1.Issue>;
|
||||
/**
|
||||
* Creates a schema error with useful information.
|
||||
*
|
||||
* @param issues The schema issues.
|
||||
*/
|
||||
constructor(issues: ReadonlyArray<StandardSchemaV1.Issue>);
|
||||
}
|
||||
|
||||
export { SchemaError, getDotPath };
|
||||
28
frontend/node_modules/@standard-schema/utils/dist/index.d.ts
generated
vendored
Normal file
28
frontend/node_modules/@standard-schema/utils/dist/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
import { StandardSchemaV1 } from '@standard-schema/spec';
|
||||
|
||||
/**
|
||||
* Creates and returns the dot path of an issue if possible.
|
||||
*
|
||||
* @param issue The issue to get the dot path from.
|
||||
*
|
||||
* @returns The dot path or null.
|
||||
*/
|
||||
declare function getDotPath(issue: StandardSchemaV1.Issue): string | null;
|
||||
|
||||
/**
|
||||
* A schema error with useful information.
|
||||
*/
|
||||
declare class SchemaError extends Error {
|
||||
/**
|
||||
* The schema issues.
|
||||
*/
|
||||
readonly issues: ReadonlyArray<StandardSchemaV1.Issue>;
|
||||
/**
|
||||
* Creates a schema error with useful information.
|
||||
*
|
||||
* @param issues The schema issues.
|
||||
*/
|
||||
constructor(issues: ReadonlyArray<StandardSchemaV1.Issue>);
|
||||
}
|
||||
|
||||
export { SchemaError, getDotPath };
|
||||
42
frontend/node_modules/@standard-schema/utils/dist/index.js
generated
vendored
Normal file
42
frontend/node_modules/@standard-schema/utils/dist/index.js
generated
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
// src/getDotPath/getDotPath.ts
|
||||
function getDotPath(issue) {
|
||||
if (issue.path?.length) {
|
||||
let dotPath = "";
|
||||
for (const item of issue.path) {
|
||||
const key = typeof item === "object" ? item.key : item;
|
||||
if (typeof key === "string" || typeof key === "number") {
|
||||
if (dotPath) {
|
||||
dotPath += `.${key}`;
|
||||
} else {
|
||||
dotPath += key;
|
||||
}
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
return dotPath;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
// src/SchemaError/SchemaError.ts
|
||||
var SchemaError = class extends Error {
|
||||
/**
|
||||
* The schema issues.
|
||||
*/
|
||||
issues;
|
||||
/**
|
||||
* Creates a schema error with useful information.
|
||||
*
|
||||
* @param issues The schema issues.
|
||||
*/
|
||||
constructor(issues) {
|
||||
super(issues[0].message);
|
||||
this.name = "SchemaError";
|
||||
this.issues = issues;
|
||||
}
|
||||
};
|
||||
export {
|
||||
SchemaError,
|
||||
getDotPath
|
||||
};
|
||||
54
frontend/node_modules/@standard-schema/utils/package.json
generated
vendored
Normal file
54
frontend/node_modules/@standard-schema/utils/package.json
generated
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"name": "@standard-schema/utils",
|
||||
"description": "The official runtime utils for Standard Schema",
|
||||
"version": "0.3.0",
|
||||
"license": "MIT",
|
||||
"author": "Fabian Hiller",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/standard-schema/standard-schema"
|
||||
},
|
||||
"keywords": [
|
||||
"standard",
|
||||
"schema",
|
||||
"utils"
|
||||
],
|
||||
"type": "module",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"default": "./dist/index.js"
|
||||
},
|
||||
"require": {
|
||||
"types": "./dist/index.d.cts",
|
||||
"default": "./dist/index.cjs"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sideEffects": false,
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@standard-schema/spec": "npm:@jsr/standard-schema__spec@1.0.0-beta.4",
|
||||
"@vitest/coverage-v8": "2.1.2",
|
||||
"tsup": "^8.3.0",
|
||||
"typescript": "^5.6.2",
|
||||
"vite": "^5.4.8",
|
||||
"vitest": "^2.1.2"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "vitest",
|
||||
"coverage": "vitest run --coverage --isolate",
|
||||
"lint": "pnpm biome lint ./src",
|
||||
"format": "pnpm biome format --write ./src",
|
||||
"check": "pnpm biome check ./src",
|
||||
"build": "tsup"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user