arkenv 0.10.0 → 0.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -84
- package/dist/{core-DzT5rjcY.mjs → core-B51xxxje.mjs} +1 -1
- package/dist/{core-DzT5rjcY.mjs.map → core-B51xxxje.mjs.map} +1 -1
- package/dist/core.cjs +1 -1
- package/dist/core.d.cts +2 -1
- package/dist/core.d.cts.map +1 -1
- package/dist/core.d.mts +2 -1
- package/dist/core.d.mts.map +1 -1
- package/dist/core.mjs +1 -1
- package/dist/{index-Cic20SzT.d.mts → index-Bx89Loyb.d.mts} +27 -29
- package/dist/index-Bx89Loyb.d.mts.map +1 -0
- package/dist/{index-bSO6Cmhi.d.cts → index-CzNfOanV.d.cts} +27 -29
- package/dist/index-CzNfOanV.d.cts.map +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +36 -31
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +36 -31
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/standard.cjs +1 -1
- package/dist/standard.d.cts +1 -1
- package/dist/standard.d.cts.map +1 -1
- package/dist/standard.d.mts +1 -1
- package/dist/standard.d.mts.map +1 -1
- package/dist/standard.mjs +1 -1
- package/dist/standard.mjs.map +1 -1
- package/package.json +30 -19
- package/dist/index-Cic20SzT.d.mts.map +0 -1
- package/dist/index-bSO6Cmhi.d.cts.map +0 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "arkenv",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.11.1",
|
|
5
5
|
"description": "Typesafe environment variables parsing and validation with ArkType",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.mjs",
|
|
@@ -52,15 +52,17 @@
|
|
|
52
52
|
"bugs": "https://github.com/yamcodes/arkenv/labels/arkenv",
|
|
53
53
|
"author": "Yam Borodetsky <yam@yam.codes>",
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@
|
|
56
|
-
"@size-limit/
|
|
57
|
-
"@
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
55
|
+
"@ark/attest": "0.56.0",
|
|
56
|
+
"@size-limit/esbuild-why": "12.1.0",
|
|
57
|
+
"@size-limit/preset-small-lib": "12.1.0",
|
|
58
|
+
"@types/node": "24.12.2",
|
|
59
|
+
"arktype": "2.2.0",
|
|
60
|
+
"rimraf": "6.1.3",
|
|
61
|
+
"size-limit": "12.1.0",
|
|
62
|
+
"tsdown": "0.21.10",
|
|
63
|
+
"typescript": "6.0.3",
|
|
64
|
+
"vitest": "4.1.5",
|
|
65
|
+
"zod": "4.4.1",
|
|
64
66
|
"@repo/scope": "0.1.3",
|
|
65
67
|
"@repo/types": "0.1.0"
|
|
66
68
|
},
|
|
@@ -74,26 +76,35 @@
|
|
|
74
76
|
},
|
|
75
77
|
"size-limit": [
|
|
76
78
|
{
|
|
77
|
-
"
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
"dist/core.mjs"
|
|
81
|
-
],
|
|
82
|
-
"limit": "3 kB",
|
|
79
|
+
"name": "arkenv",
|
|
80
|
+
"path": "dist/index.mjs",
|
|
81
|
+
"limit": "2 kB",
|
|
83
82
|
"import": "*",
|
|
84
83
|
"ignore": [
|
|
85
|
-
"arktype"
|
|
86
|
-
"node:module"
|
|
84
|
+
"arktype"
|
|
87
85
|
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "arkenv/standard",
|
|
89
|
+
"path": "dist/standard.mjs",
|
|
90
|
+
"limit": "1.1 kB",
|
|
91
|
+
"import": "*"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "arkenv/core",
|
|
95
|
+
"path": "dist/core.mjs",
|
|
96
|
+
"limit": "500 B",
|
|
97
|
+
"import": "*"
|
|
88
98
|
}
|
|
89
99
|
],
|
|
90
100
|
"scripts": {
|
|
91
101
|
"build": "tsdown",
|
|
92
102
|
"size": "size-limit --json > .size-limit.json",
|
|
93
|
-
"test:once": "
|
|
103
|
+
"test:once": "vitest run",
|
|
94
104
|
"typecheck": "tsc --noEmit",
|
|
95
105
|
"clean": "rimraf dist node_modules",
|
|
96
106
|
"test": "vitest",
|
|
107
|
+
"test:types": "vitest run --typecheck.only",
|
|
97
108
|
"fix": "pnpm -w run fix"
|
|
98
109
|
}
|
|
99
110
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index-Cic20SzT.d.mts","names":["arktype0","arktype_internal_keywords_string_ts0","arktype_internal_attributes_ts0","$","trim","To","Submodule","normalize","capitalize","stringDate","stringInteger","ip","stringJson","lower","stringNumeric","url","uuid","Scope","Dict","T","Record","StandardTypedV1","Input","Output","Props","Schema","Types","NonNullable","StandardSchemaV1","Options","Result","Promise","SuccessResult","FailureResult","Record","Issue","ReadonlyArray","PropertyKey","PathSegment","InferInput","InferOutput","StandardJSONSchemaV1","Converter","Target","type","StandardSchemaV1","InferType","T","Record","errors","Any","$","Type","SchemaShape","Record","CompiledEnvSchema"],"sources":["../../internal/scope/dist/index.d.ts","../../internal/types/dist/helpers.d.ts","../../internal/types/dist/standard-schema.d.ts","../../internal/types/dist/infer-type.d.ts","../../internal/types/dist/schema.d.ts"],"sourcesContent":["import * as arktype0 from \"arktype\";\nimport * as arktype_internal_keywords_string_ts0 from \"arktype/internal/keywords/string.ts\";\nimport * as arktype_internal_attributes_ts0 from \"arktype/internal/attributes.ts\";\n\n//#region src/root.d.ts\n/**\n * The root scope for the ArkEnv library,\n * containing extensions to the ArkType scopes with ArkEnv-specific types\n * like `string.host` and `number.port`.\n */\ndeclare const $: arktype0.Scope<{\n string: arktype0.Submodule<{\n trim: arktype0.Submodule<arktype_internal_keywords_string_ts0.trim.$ & {\n \" arkInferred\": (In: string) => arktype_internal_attributes_ts0.To<string>;\n }>;\n normalize: arktype0.Submodule<arktype_internal_keywords_string_ts0.normalize.$ & {\n \" arkInferred\": (In: string) => arktype_internal_attributes_ts0.To<string>;\n }>;\n root: string;\n alpha: string;\n alphanumeric: string;\n hex: string;\n base64: arktype0.Submodule<{\n root: string;\n url: string;\n } & {\n \" arkInferred\": string;\n }>;\n capitalize: arktype0.Submodule<arktype_internal_keywords_string_ts0.capitalize.$ & {\n \" arkInferred\": (In: string) => arktype_internal_attributes_ts0.To<string>;\n }>;\n creditCard: string;\n date: arktype0.Submodule<arktype_internal_keywords_string_ts0.stringDate.$ & {\n \" arkInferred\": string;\n }>;\n digits: string;\n email: string;\n integer: arktype0.Submodule<arktype_internal_keywords_string_ts0.stringInteger.$ & {\n \" arkInferred\": string;\n }>;\n ip: arktype0.Submodule<arktype_internal_keywords_string_ts0.ip.$ & {\n \" arkInferred\": string;\n }>;\n json: arktype0.Submodule<arktype_internal_keywords_string_ts0.stringJson.$ & {\n \" arkInferred\": string;\n }>;\n lower: arktype0.Submodule<arktype_internal_keywords_string_ts0.lower.$ & {\n \" arkInferred\": (In: string) => arktype_internal_attributes_ts0.To<string>;\n }>;\n numeric: arktype0.Submodule<arktype_internal_keywords_string_ts0.stringNumeric.$ & {\n \" arkInferred\": string;\n }>;\n regex: string;\n semver: string;\n upper: arktype0.Submodule<{\n root: (In: string) => arktype_internal_attributes_ts0.To<string>;\n preformatted: string;\n } & {\n \" arkInferred\": (In: string) => arktype_internal_attributes_ts0.To<string>;\n }>;\n url: arktype0.Submodule<arktype_internal_keywords_string_ts0.url.$ & {\n \" arkInferred\": string;\n }>;\n uuid: arktype0.Submodule<arktype_internal_keywords_string_ts0.uuid.$ & {\n \" arkInferred\": string;\n }>;\n \" arkInferred\": string;\n host: string;\n }>;\n number: arktype0.Submodule<{\n NaN: number;\n Infinity: number;\n root: number;\n integer: number;\n \" arkInferred\": number;\n epoch: number;\n safe: number;\n NegativeInfinity: number;\n port: number;\n }>;\n}>;\ntype $ = (typeof $)[\"t\"];\n//#endregion\nexport { $ };\n//# sourceMappingURL=index.d.ts.map","export type Dict<T> = Record<string, T | undefined>;\n//# sourceMappingURL=helpers.d.ts.map","/**\n * @see https://github.com/standard-schema/standard-schema/tree/3130ce43fdd848d9ab49dbb0458d04f18459961c/packages/spec\n *\n * Copied from standard-schema (MIT License)\n * Copyright (c) 2024 Colin McDannell\n */\n/** The Standard Typed interface. This is a base type extended by other specs. */\nexport interface StandardTypedV1<Input = unknown, Output = Input> {\n /** The Standard properties. */\n readonly \"~standard\": StandardTypedV1.Props<Input, Output>;\n}\nexport declare namespace StandardTypedV1 {\n /** The Standard Typed properties interface. */\n interface Props<Input = unknown, Output = Input> {\n /** The version number of the standard. */\n readonly version: 1;\n /** The vendor name of the schema library. */\n readonly vendor: string;\n /** Inferred types associated with the schema. */\n readonly types?: Types<Input, Output> | undefined;\n }\n /** The Standard Typed types interface. */\n interface Types<Input = unknown, Output = Input> {\n /** The input type of the schema. */\n readonly input: Input;\n /** The output type of the schema. */\n readonly output: Output;\n }\n /** Infers the input type of a Standard Typed. */\n type InferInput<Schema extends StandardTypedV1> = NonNullable<Schema[\"~standard\"][\"types\"]>[\"input\"];\n /** Infers the output type of a Standard Typed. */\n type InferOutput<Schema extends StandardTypedV1> = NonNullable<Schema[\"~standard\"][\"types\"]>[\"output\"];\n}\n/** The Standard Schema interface. */\nexport interface StandardSchemaV1<Input = unknown, Output = Input> {\n /** The Standard Schema properties. */\n readonly \"~standard\": StandardSchemaV1.Props<Input, Output>;\n}\nexport declare namespace StandardSchemaV1 {\n /** The Standard Schema properties interface. */\n interface Props<Input = unknown, Output = Input> extends StandardTypedV1.Props<Input, Output> {\n /** Validates unknown input values. */\n readonly validate: (value: unknown, options?: StandardSchemaV1.Options | undefined) => Result<Output> | Promise<Result<Output>>;\n }\n /** The result interface of the validate function. */\n type Result<Output> = SuccessResult<Output> | FailureResult;\n /** The result interface if validation succeeds. */\n interface SuccessResult<Output> {\n /** The typed output value. */\n readonly value: Output;\n /** A falsy value for `issues` indicates success. */\n readonly issues?: undefined;\n }\n interface Options {\n /** Explicit support for additional vendor-specific parameters, if needed. */\n readonly libraryOptions?: Record<string, unknown> | undefined;\n }\n /** The result interface if validation fails. */\n interface FailureResult {\n /** The issues of failed validation. */\n readonly issues: ReadonlyArray<Issue>;\n }\n /** The issue interface of the failure output. */\n interface Issue {\n /** The error message of the issue. */\n readonly message: string;\n /** The path of the issue, if any. */\n readonly path?: ReadonlyArray<PropertyKey | PathSegment> | undefined;\n }\n /** The path segment interface of the issue. */\n interface PathSegment {\n /** The key representing a path segment. */\n readonly key: PropertyKey;\n }\n /** The Standard types interface. */\n interface Types<Input = unknown, Output = Input> extends StandardTypedV1.Types<Input, Output> {\n }\n /** Infers the input type of a Standard. */\n type InferInput<Schema extends StandardTypedV1> = StandardTypedV1.InferInput<Schema>;\n /** Infers the output type of a Standard. */\n type InferOutput<Schema extends StandardTypedV1> = StandardTypedV1.InferOutput<Schema>;\n}\n/** The Standard JSON Schema interface. */\nexport interface StandardJSONSchemaV1<Input = unknown, Output = Input> {\n /** The Standard JSON Schema properties. */\n readonly \"~standard\": StandardJSONSchemaV1.Props<Input, Output>;\n}\nexport declare namespace StandardJSONSchemaV1 {\n /** The Standard JSON Schema properties interface. */\n interface Props<Input = unknown, Output = Input> extends StandardTypedV1.Props<Input, Output> {\n /** Methods for generating the input/output JSON Schema. */\n readonly jsonSchema: StandardJSONSchemaV1.Converter;\n }\n /** The Standard JSON Schema converter interface. */\n interface Converter {\n /** Converts the input type to JSON Schema. May throw if conversion is not supported. */\n readonly input: (options: StandardJSONSchemaV1.Options) => Record<string, unknown>;\n /** Converts the output type to JSON Schema. May throw if conversion is not supported. */\n readonly output: (options: StandardJSONSchemaV1.Options) => Record<string, unknown>;\n }\n /**\n * The target version of the generated JSON Schema.\n *\n * 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.\n *\n * The `\"openapi-3.0\"` target is intended as a standardized specifier for OpenAPI 3.0 which is a superset of JSON Schema `\"draft-04\"`.\n */\n type Target = \"draft-2020-12\" | \"draft-07\" | \"openapi-3.0\" | ({} & string);\n /** The options for the input/output methods. */\n interface Options {\n /** 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. */\n readonly target: Target;\n /** Explicit support for additional vendor-specific parameters, if needed. */\n readonly libraryOptions?: Record<string, unknown> | undefined;\n }\n /** The Standard types interface. */\n interface Types<Input = unknown, Output = Input> extends StandardTypedV1.Types<Input, Output> {\n }\n /** Infers the input type of a Standard. */\n type InferInput<Schema extends StandardTypedV1> = StandardTypedV1.InferInput<Schema>;\n /** Infers the output type of a Standard. */\n type InferOutput<Schema extends StandardTypedV1> = StandardTypedV1.InferOutput<Schema>;\n}\n//# sourceMappingURL=standard-schema.d.ts.map","import type { type } from \"arktype\";\nimport type { StandardSchemaV1 } from \"./standard-schema\";\n/**\n * Extract the inferred type from a schema definition.\n * Supports both ArkType type definitions and Standard Schema 1.0 validators.\n *\n * For Standard Schema validators (e.g., Zod, Valibot), extracts the output type.\n * For ArkType definitions, checks the call signature or type properties.\n *\n * @template T - The schema definition to infer from\n */\nexport type InferType<T> = T extends StandardSchemaV1<infer _Input, infer Output> ? Output : T extends (value: Record<string, string | undefined>) => infer R ? R extends type.errors ? never : R : T extends {\n t: infer U;\n} ? U : T extends type.Any<infer U, infer _Scope> ? U : never;\n//# sourceMappingURL=infer-type.d.ts.map","import type { $ } from \"@repo/scope\";\nimport type { Type } from \"arktype\";\nexport type SchemaShape = Record<string, unknown>;\n/**\n * @internal\n *\n * Compiled ArkType schema accepted by ArkEnv.\n * Produced by `arktype.type(...)` or `scope(...)`.\n *\n * Represents an already-constructed ArkType `Type` instance that\n * defines the full environment schema.\n *\n * This form bypasses schema validation and is intended for advanced\n * or programmatic use cases where schemas are constructed dynamically.\n */\nexport type CompiledEnvSchema = Type<SchemaShape, $>;\n//# sourceMappingURL=schema.d.ts.map"],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index-bSO6Cmhi.d.cts","names":["arktype0","arktype_internal_keywords_string_ts0","arktype_internal_attributes_ts0","$","trim","To","Submodule","normalize","capitalize","stringDate","stringInteger","ip","stringJson","lower","stringNumeric","url","uuid","Scope","Dict","T","Record","StandardTypedV1","Input","Output","Props","Schema","Types","NonNullable","StandardSchemaV1","Options","Result","Promise","SuccessResult","FailureResult","Record","Issue","ReadonlyArray","PropertyKey","PathSegment","InferInput","InferOutput","StandardJSONSchemaV1","Converter","Target","type","StandardSchemaV1","InferType","T","Record","errors","Any","$","Type","SchemaShape","Record","CompiledEnvSchema"],"sources":["../../internal/scope/dist/index.d.ts","../../internal/types/dist/helpers.d.ts","../../internal/types/dist/standard-schema.d.ts","../../internal/types/dist/infer-type.d.ts","../../internal/types/dist/schema.d.ts"],"sourcesContent":["import * as arktype0 from \"arktype\";\nimport * as arktype_internal_keywords_string_ts0 from \"arktype/internal/keywords/string.ts\";\nimport * as arktype_internal_attributes_ts0 from \"arktype/internal/attributes.ts\";\n\n//#region src/root.d.ts\n/**\n * The root scope for the ArkEnv library,\n * containing extensions to the ArkType scopes with ArkEnv-specific types\n * like `string.host` and `number.port`.\n */\ndeclare const $: arktype0.Scope<{\n string: arktype0.Submodule<{\n trim: arktype0.Submodule<arktype_internal_keywords_string_ts0.trim.$ & {\n \" arkInferred\": (In: string) => arktype_internal_attributes_ts0.To<string>;\n }>;\n normalize: arktype0.Submodule<arktype_internal_keywords_string_ts0.normalize.$ & {\n \" arkInferred\": (In: string) => arktype_internal_attributes_ts0.To<string>;\n }>;\n root: string;\n alpha: string;\n alphanumeric: string;\n hex: string;\n base64: arktype0.Submodule<{\n root: string;\n url: string;\n } & {\n \" arkInferred\": string;\n }>;\n capitalize: arktype0.Submodule<arktype_internal_keywords_string_ts0.capitalize.$ & {\n \" arkInferred\": (In: string) => arktype_internal_attributes_ts0.To<string>;\n }>;\n creditCard: string;\n date: arktype0.Submodule<arktype_internal_keywords_string_ts0.stringDate.$ & {\n \" arkInferred\": string;\n }>;\n digits: string;\n email: string;\n integer: arktype0.Submodule<arktype_internal_keywords_string_ts0.stringInteger.$ & {\n \" arkInferred\": string;\n }>;\n ip: arktype0.Submodule<arktype_internal_keywords_string_ts0.ip.$ & {\n \" arkInferred\": string;\n }>;\n json: arktype0.Submodule<arktype_internal_keywords_string_ts0.stringJson.$ & {\n \" arkInferred\": string;\n }>;\n lower: arktype0.Submodule<arktype_internal_keywords_string_ts0.lower.$ & {\n \" arkInferred\": (In: string) => arktype_internal_attributes_ts0.To<string>;\n }>;\n numeric: arktype0.Submodule<arktype_internal_keywords_string_ts0.stringNumeric.$ & {\n \" arkInferred\": string;\n }>;\n regex: string;\n semver: string;\n upper: arktype0.Submodule<{\n root: (In: string) => arktype_internal_attributes_ts0.To<string>;\n preformatted: string;\n } & {\n \" arkInferred\": (In: string) => arktype_internal_attributes_ts0.To<string>;\n }>;\n url: arktype0.Submodule<arktype_internal_keywords_string_ts0.url.$ & {\n \" arkInferred\": string;\n }>;\n uuid: arktype0.Submodule<arktype_internal_keywords_string_ts0.uuid.$ & {\n \" arkInferred\": string;\n }>;\n \" arkInferred\": string;\n host: string;\n }>;\n number: arktype0.Submodule<{\n NaN: number;\n Infinity: number;\n root: number;\n integer: number;\n \" arkInferred\": number;\n epoch: number;\n safe: number;\n NegativeInfinity: number;\n port: number;\n }>;\n}>;\ntype $ = (typeof $)[\"t\"];\n//#endregion\nexport { $ };\n//# sourceMappingURL=index.d.ts.map","export type Dict<T> = Record<string, T | undefined>;\n//# sourceMappingURL=helpers.d.ts.map","/**\n * @see https://github.com/standard-schema/standard-schema/tree/3130ce43fdd848d9ab49dbb0458d04f18459961c/packages/spec\n *\n * Copied from standard-schema (MIT License)\n * Copyright (c) 2024 Colin McDannell\n */\n/** The Standard Typed interface. This is a base type extended by other specs. */\nexport interface StandardTypedV1<Input = unknown, Output = Input> {\n /** The Standard properties. */\n readonly \"~standard\": StandardTypedV1.Props<Input, Output>;\n}\nexport declare namespace StandardTypedV1 {\n /** The Standard Typed properties interface. */\n interface Props<Input = unknown, Output = Input> {\n /** The version number of the standard. */\n readonly version: 1;\n /** The vendor name of the schema library. */\n readonly vendor: string;\n /** Inferred types associated with the schema. */\n readonly types?: Types<Input, Output> | undefined;\n }\n /** The Standard Typed types interface. */\n interface Types<Input = unknown, Output = Input> {\n /** The input type of the schema. */\n readonly input: Input;\n /** The output type of the schema. */\n readonly output: Output;\n }\n /** Infers the input type of a Standard Typed. */\n type InferInput<Schema extends StandardTypedV1> = NonNullable<Schema[\"~standard\"][\"types\"]>[\"input\"];\n /** Infers the output type of a Standard Typed. */\n type InferOutput<Schema extends StandardTypedV1> = NonNullable<Schema[\"~standard\"][\"types\"]>[\"output\"];\n}\n/** The Standard Schema interface. */\nexport interface StandardSchemaV1<Input = unknown, Output = Input> {\n /** The Standard Schema properties. */\n readonly \"~standard\": StandardSchemaV1.Props<Input, Output>;\n}\nexport declare namespace StandardSchemaV1 {\n /** The Standard Schema properties interface. */\n interface Props<Input = unknown, Output = Input> extends StandardTypedV1.Props<Input, Output> {\n /** Validates unknown input values. */\n readonly validate: (value: unknown, options?: StandardSchemaV1.Options | undefined) => Result<Output> | Promise<Result<Output>>;\n }\n /** The result interface of the validate function. */\n type Result<Output> = SuccessResult<Output> | FailureResult;\n /** The result interface if validation succeeds. */\n interface SuccessResult<Output> {\n /** The typed output value. */\n readonly value: Output;\n /** A falsy value for `issues` indicates success. */\n readonly issues?: undefined;\n }\n interface Options {\n /** Explicit support for additional vendor-specific parameters, if needed. */\n readonly libraryOptions?: Record<string, unknown> | undefined;\n }\n /** The result interface if validation fails. */\n interface FailureResult {\n /** The issues of failed validation. */\n readonly issues: ReadonlyArray<Issue>;\n }\n /** The issue interface of the failure output. */\n interface Issue {\n /** The error message of the issue. */\n readonly message: string;\n /** The path of the issue, if any. */\n readonly path?: ReadonlyArray<PropertyKey | PathSegment> | undefined;\n }\n /** The path segment interface of the issue. */\n interface PathSegment {\n /** The key representing a path segment. */\n readonly key: PropertyKey;\n }\n /** The Standard types interface. */\n interface Types<Input = unknown, Output = Input> extends StandardTypedV1.Types<Input, Output> {\n }\n /** Infers the input type of a Standard. */\n type InferInput<Schema extends StandardTypedV1> = StandardTypedV1.InferInput<Schema>;\n /** Infers the output type of a Standard. */\n type InferOutput<Schema extends StandardTypedV1> = StandardTypedV1.InferOutput<Schema>;\n}\n/** The Standard JSON Schema interface. */\nexport interface StandardJSONSchemaV1<Input = unknown, Output = Input> {\n /** The Standard JSON Schema properties. */\n readonly \"~standard\": StandardJSONSchemaV1.Props<Input, Output>;\n}\nexport declare namespace StandardJSONSchemaV1 {\n /** The Standard JSON Schema properties interface. */\n interface Props<Input = unknown, Output = Input> extends StandardTypedV1.Props<Input, Output> {\n /** Methods for generating the input/output JSON Schema. */\n readonly jsonSchema: StandardJSONSchemaV1.Converter;\n }\n /** The Standard JSON Schema converter interface. */\n interface Converter {\n /** Converts the input type to JSON Schema. May throw if conversion is not supported. */\n readonly input: (options: StandardJSONSchemaV1.Options) => Record<string, unknown>;\n /** Converts the output type to JSON Schema. May throw if conversion is not supported. */\n readonly output: (options: StandardJSONSchemaV1.Options) => Record<string, unknown>;\n }\n /**\n * The target version of the generated JSON Schema.\n *\n * 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.\n *\n * The `\"openapi-3.0\"` target is intended as a standardized specifier for OpenAPI 3.0 which is a superset of JSON Schema `\"draft-04\"`.\n */\n type Target = \"draft-2020-12\" | \"draft-07\" | \"openapi-3.0\" | ({} & string);\n /** The options for the input/output methods. */\n interface Options {\n /** 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. */\n readonly target: Target;\n /** Explicit support for additional vendor-specific parameters, if needed. */\n readonly libraryOptions?: Record<string, unknown> | undefined;\n }\n /** The Standard types interface. */\n interface Types<Input = unknown, Output = Input> extends StandardTypedV1.Types<Input, Output> {\n }\n /** Infers the input type of a Standard. */\n type InferInput<Schema extends StandardTypedV1> = StandardTypedV1.InferInput<Schema>;\n /** Infers the output type of a Standard. */\n type InferOutput<Schema extends StandardTypedV1> = StandardTypedV1.InferOutput<Schema>;\n}\n//# sourceMappingURL=standard-schema.d.ts.map","import type { type } from \"arktype\";\nimport type { StandardSchemaV1 } from \"./standard-schema\";\n/**\n * Extract the inferred type from a schema definition.\n * Supports both ArkType type definitions and Standard Schema 1.0 validators.\n *\n * For Standard Schema validators (e.g., Zod, Valibot), extracts the output type.\n * For ArkType definitions, checks the call signature or type properties.\n *\n * @template T - The schema definition to infer from\n */\nexport type InferType<T> = T extends StandardSchemaV1<infer _Input, infer Output> ? Output : T extends (value: Record<string, string | undefined>) => infer R ? R extends type.errors ? never : R : T extends {\n t: infer U;\n} ? U : T extends type.Any<infer U, infer _Scope> ? U : never;\n//# sourceMappingURL=infer-type.d.ts.map","import type { $ } from \"@repo/scope\";\nimport type { Type } from \"arktype\";\nexport type SchemaShape = Record<string, unknown>;\n/**\n * @internal\n *\n * Compiled ArkType schema accepted by ArkEnv.\n * Produced by `arktype.type(...)` or `scope(...)`.\n *\n * Represents an already-constructed ArkType `Type` instance that\n * defines the full environment schema.\n *\n * This form bypasses schema validation and is intended for advanced\n * or programmatic use cases where schemas are constructed dynamically.\n */\nexport type CompiledEnvSchema = Type<SchemaShape, $>;\n//# sourceMappingURL=schema.d.ts.map"],"mappings":"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"}
|