aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/@standard-schema/spec/dist
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-14 14:46:37 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-14 14:46:37 -0800
commitafa87af01c79a9baa539f2992d32154d2a4739bd (patch)
tree92c7416db734270a2fee1d72ee9cc119379ff8e1 /vanilla/node_modules/@standard-schema/spec/dist
parent3b927e84d200402281f68181cd4253bc77e5528d (diff)
downloadneko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.gz
neko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.bz2
neko-afa87af01c79a9baa539f2992d32154d2a4739bd.zip
task: delete vanilla js prototype\n\n- Removed vanilla/ directory and web/dist/vanilla directory\n- Updated Makefile, Dockerfile, and CI workflow to remove vanilla references\n- Cleaned up web/web.go to remove vanilla embed and routes\n- Verified build and tests pass\n\nCloses NK-2tcnmq
Diffstat (limited to 'vanilla/node_modules/@standard-schema/spec/dist')
-rw-r--r--vanilla/node_modules/@standard-schema/spec/dist/index.cjs18
-rw-r--r--vanilla/node_modules/@standard-schema/spec/dist/index.d.cts119
-rw-r--r--vanilla/node_modules/@standard-schema/spec/dist/index.d.ts119
-rw-r--r--vanilla/node_modules/@standard-schema/spec/dist/index.js0
4 files changed, 0 insertions, 256 deletions
diff --git a/vanilla/node_modules/@standard-schema/spec/dist/index.cjs b/vanilla/node_modules/@standard-schema/spec/dist/index.cjs
deleted file mode 100644
index 321666e..0000000
--- a/vanilla/node_modules/@standard-schema/spec/dist/index.cjs
+++ /dev/null
@@ -1,18 +0,0 @@
-"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);
diff --git a/vanilla/node_modules/@standard-schema/spec/dist/index.d.cts b/vanilla/node_modules/@standard-schema/spec/dist/index.d.cts
deleted file mode 100644
index 5e4acaa..0000000
--- a/vanilla/node_modules/@standard-schema/spec/dist/index.d.cts
+++ /dev/null
@@ -1,119 +0,0 @@
-/** 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 };
diff --git a/vanilla/node_modules/@standard-schema/spec/dist/index.d.ts b/vanilla/node_modules/@standard-schema/spec/dist/index.d.ts
deleted file mode 100644
index 5e4acaa..0000000
--- a/vanilla/node_modules/@standard-schema/spec/dist/index.d.ts
+++ /dev/null
@@ -1,119 +0,0 @@
-/** 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 };
diff --git a/vanilla/node_modules/@standard-schema/spec/dist/index.js b/vanilla/node_modules/@standard-schema/spec/dist/index.js
deleted file mode 100644
index e69de29..0000000
--- a/vanilla/node_modules/@standard-schema/spec/dist/index.js
+++ /dev/null