@power-plant/schema 0.0.2 → 0.0.3

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.
Files changed (72) hide show
  1. package/README.md +221 -1
  2. package/dist/codegen.cjs +1 -77
  3. package/dist/codegen.mjs +1 -78
  4. package/dist/{constants-Cx9_Shfk.d.cts → constants-u7ovYS9e.d.cts} +3 -4
  5. package/dist/constants-u7ovYS9e.d.cts.map +1 -0
  6. package/dist/{constants-Cx9_Shfk.d.mts → constants-u7ovYS9e.d.mts} +3 -4
  7. package/dist/constants-u7ovYS9e.d.mts.map +1 -0
  8. package/dist/constants.cjs +1 -1
  9. package/dist/constants.d.cts +2 -2
  10. package/dist/constants.d.mts +2 -2
  11. package/dist/constants.mjs +1 -1
  12. package/dist/extract.cjs +1 -1
  13. package/dist/extract.d.cts +22 -9
  14. package/dist/extract.d.cts.map +1 -1
  15. package/dist/extract.d.mts +22 -9
  16. package/dist/extract.mjs +2 -1
  17. package/dist/extract.mjs.map +1 -0
  18. package/dist/helpers.cjs +1 -1
  19. package/dist/helpers.d.cts +14 -3
  20. package/dist/helpers.d.cts.map +1 -1
  21. package/dist/helpers.d.mts +14 -3
  22. package/dist/helpers.mjs +1 -2
  23. package/dist/index.cjs +1 -1
  24. package/dist/index.d.cts +7 -10
  25. package/dist/index.d.cts.map +1 -1
  26. package/dist/index.d.mts +7 -10
  27. package/dist/index.mjs +1 -1
  28. package/dist/metadata-CsY3HrP2.cjs +77 -0
  29. package/dist/metadata-DIEpQjbq.mjs +78 -0
  30. package/dist/metadata-DIEpQjbq.mjs.map +1 -0
  31. package/dist/metadata.cjs +1 -1
  32. package/dist/metadata.d.cts +65 -2
  33. package/dist/metadata.d.cts.map +1 -1
  34. package/dist/metadata.d.mts +65 -2
  35. package/dist/metadata.mjs +1 -2
  36. package/dist/type-checks.cjs +1 -1
  37. package/dist/type-checks.d.cts +10 -3
  38. package/dist/type-checks.d.cts.map +1 -1
  39. package/dist/type-checks.d.mts +10 -3
  40. package/dist/type-checks.mjs +1 -1
  41. package/dist/types.d.cts +206 -37
  42. package/dist/types.d.cts.map +1 -1
  43. package/dist/types.d.mts +206 -37
  44. package/package.json +19 -64
  45. package/dist/bundle.cjs +0 -1
  46. package/dist/bundle.d.cts +0 -18
  47. package/dist/bundle.d.cts.map +0 -1
  48. package/dist/bundle.d.mts +0 -18
  49. package/dist/bundle.d.mts.map +0 -1
  50. package/dist/bundle.mjs +0 -2
  51. package/dist/bundle.mjs.map +0 -1
  52. package/dist/codegen.mjs.map +0 -1
  53. package/dist/constants-Cx9_Shfk.d.cts.map +0 -1
  54. package/dist/constants-Cx9_Shfk.d.mts.map +0 -1
  55. package/dist/helpers.mjs.map +0 -1
  56. package/dist/metadata.mjs.map +0 -1
  57. package/dist/persistence-B9pzElsC.mjs +0 -2
  58. package/dist/persistence-B9pzElsC.mjs.map +0 -1
  59. package/dist/persistence-CLni2zCP.cjs +0 -1
  60. package/dist/persistence.cjs +0 -1
  61. package/dist/persistence.d.cts +0 -58
  62. package/dist/persistence.d.cts.map +0 -1
  63. package/dist/persistence.d.mts +0 -58
  64. package/dist/persistence.d.mts.map +0 -1
  65. package/dist/persistence.mjs +0 -1
  66. package/dist/resolve.cjs +0 -1
  67. package/dist/resolve.d.cts +0 -45
  68. package/dist/resolve.d.cts.map +0 -1
  69. package/dist/resolve.d.mts +0 -45
  70. package/dist/resolve.d.mts.map +0 -1
  71. package/dist/resolve.mjs +0 -2
  72. package/dist/resolve.mjs.map +0 -1
package/dist/types.d.cts CHANGED
@@ -1,27 +1,12 @@
1
- import { n as JSON_SCHEMA_PRIMITIVE_TYPES, r as JSON_SCHEMA_TYPES } from "./constants-Cx9_Shfk.cjs";
1
+ import { n as JSON_SCHEMA_PRIMITIVE_TYPES, r as JSON_SCHEMA_TYPES } from "./constants-u7ovYS9e.cjs";
2
2
  import { StandardJSONSchemaV1 } from "@standard-schema/spec";
3
- import { FileReferenceInput } from "@stryke/types/configuration";
3
+ import { InferLoadOptions, LoadInput } from "@stryke/resolve/types";
4
+ import { MaybePromise } from "@stryke/types/base";
4
5
  import { InputObject, Schema as Schema$1 } from "untyped";
5
6
  import { BaseIssue, BaseSchema } from "valibot";
6
7
  import * as z3 from "zod/v3";
7
8
 
8
9
  //#region src/types.d.ts
9
- /**
10
- * Alias for the Untyped object-input schema shape.
11
- */
12
- type UntypedInputObject = InputObject;
13
- /**
14
- * Alias for the Untyped schema document shape.
15
- */
16
- type UntypedSchema = Schema$1;
17
- /**
18
- * A Valibot schema instance.
19
- *
20
- * @template TInput - The raw input type accepted by the schema.
21
- * @template TOutput - The parsed output type produced by the schema.
22
- * @template TIssue - The issue type emitted for validation errors.
23
- */
24
- type ValibotSchema<TInput = unknown, TOutput = unknown, TIssue extends BaseIssue<unknown> = BaseIssue<unknown>> = BaseSchema<TInput, TOutput, TIssue>;
25
10
  /**
26
11
  * Primitive JSON Schema `type` keyword values.
27
12
  *
@@ -118,10 +103,14 @@ interface JsonSchemaMetadataKeywords {
118
103
  * A name for the schema, which can be used by documentation tools or other libraries that support this feature to provide a human-readable name or description for the schema. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the schema when used in conjunction with compatible tools.
119
104
  */
120
105
  name?: string;
106
+ /**
107
+ * A version for the schema, which can be used by documentation tools or other libraries that support this feature to provide additional context or information about the schema's version. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the schema when used in conjunction with compatible tools.
108
+ */
109
+ version?: string | number;
121
110
  /**
122
111
  * A title for the schema, which can be used by documentation tools or other libraries that support this feature to provide a human-readable name or description for the schema. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the schema when used in conjunction with compatible tools.
123
112
  */
124
- title?: string;
113
+ displayName?: string;
125
114
  /**
126
115
  * A description for the schema, which can be used by documentation tools or other libraries that support this feature to provide a human-readable explanation or summary of the schema's purpose and usage. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the schema when used in conjunction with compatible tools.
127
116
  */
@@ -133,7 +122,11 @@ interface JsonSchemaMetadataKeywords {
133
122
  /**
134
123
  * An array of example values that conform to the schema. This property can be used to provide sample data for documentation purposes or to assist developers in understanding the expected structure and content of the data that the schema represents. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the expected data when used in conjunction with compatible tools.
135
124
  */
136
- examples?: unknown[];
125
+ examples?: (unknown | {
126
+ name?: string;
127
+ description?: string;
128
+ value: unknown;
129
+ })[];
137
130
  /**
138
131
  * An array of strings or an alias reference to indicate that the field is an alias for one or more other fields.
139
132
  */
@@ -1136,35 +1129,217 @@ type SchemaSourceVariant = "standard-schema" | "json-schema" | "zod3" | "untyped
1136
1129
  * Accepted schema input variants, including raw type definitions.
1137
1130
  */
1138
1131
  type SchemaInputVariant = SchemaSourceVariant | "file-reference";
1132
+ /**
1133
+ * Alias for the Untyped object-input schema shape.
1134
+ */
1135
+ type UntypedInputObject = InputObject;
1136
+ /**
1137
+ * Alias for the Untyped schema document shape.
1138
+ */
1139
+ type UntypedSchema = Schema$1;
1140
+ /**
1141
+ * A Valibot schema instance.
1142
+ *
1143
+ * @template TInput - The raw input type accepted by the schema.
1144
+ * @template TOutput - The parsed output type produced by the schema.
1145
+ * @template TIssue - The issue type emitted for validation errors.
1146
+ */
1147
+ type ValibotSchema<TInput = unknown, TOutput = unknown, TIssue extends BaseIssue<unknown> = BaseIssue<unknown>> = BaseSchema<TInput, TOutput, TIssue>;
1139
1148
  /**
1140
1149
  * Raw schema source input union before normalization.
1141
1150
  */
1142
1151
  type SchemaSourceInput<TSpec = any> = StandardJSONSchemaV1<TSpec> | JsonSchemaOf<TSpec> | z3.ZodType<TSpec, any, any> | UntypedInputObject | UntypedSchema | ValibotSchema<TSpec>;
1143
1152
  /**
1144
1153
  * Any accepted schema input, including normalized schemas and references.
1154
+ *
1155
+ * @remarks
1156
+ * The `SchemaInput` type can be one of the following variants:
1157
+ * - A file path string (for example: `"./src/types.ts"`).
1158
+ * - A URL string (for example: `"https://example.com/config.json"`).
1159
+ * - A {@link GitHubReference | GitHub repository reference string}, starting with either `"github:"` or `"gh:"`, an optional branch or tag, and optionally including a specific file path within the repository (for example: `"github:main:storm-software/stryke/packages/resolve/src/types.ts"`). It is also valid to provide the branch or tag after the file path (for example: `"github:storm-software/stryke/packages/resolve/src/types.ts@main"`).
1160
+ * - A {@link GitLabReference | GitLab repository reference string}, starting with either `"gitlab:"` or `"gl:"`, an optional branch or tag, and optionally including a specific file path within the repository (for example: `"gitlab:master:storm-software/stryke/packages/resolve/src/types.ts"`). It is also valid to provide the branch or tag after the file path (for example: `"gitlab:storm-software/stryke/packages/resolve/src/types.ts@master"`).
1161
+ * - A TypeScript module name string (for example: `"@stryke/resolve"`), and optionally a specific module export from the package (for example: `"@stryke/resolve/some-module"`).
1162
+ * - A file reference string (this value can include both a path to the TypeScript module and the name of the module export separated by a ":", "#", or ";" character - for example: `"./src/types.ts#ExampleExport"`).
1163
+ * - A {@link FileReference} object, which contains information about a file reference.
1164
+ * - A {@link URL} object, which represents a URL to fetch the file from.
1165
+ * - A {@link SchemaSourceInput} object, which represents a raw schema input in one of the supported formats (Standard Schema, JSON Schema, Zod v3, Untyped, or Valibot).
1166
+ *
1167
+ * @template TSpec - The original TypeScript type for which the schema is being extracted. This type parameter is used to derive the appropriate JSON Schema representation based on the structure and constraints of `T`.
1168
+ *
1169
+ * @see {@link SchemaSourceInput}
1170
+ * @see {@link Schema}
1171
+ * @see {@link SchemaInputWithMeta}
1145
1172
  */
1146
- type SchemaInput<TSpec = any> = SchemaSourceInput<TSpec> | Schema<JsonSchemaOf<TSpec>> | FileReferenceInput | SchemaInputWithMeta<TSpec>;
1173
+ type SchemaInput<TSpec = any> = LoadInput | SchemaSourceInput<TSpec> | Schema<JsonSchemaOf<TSpec>> | SchemaInputWithMeta<TSpec>;
1174
+ type InferExtractOptions<T extends SchemaInput> = T extends LoadInput ? InferLoadOptions<T> : {};
1175
+ type MetaValue<TSpec, TValue = any> = TValue | ((spec: TSpec) => MaybePromise<TValue>);
1176
+ type MetaDeprecated = true | string | {
1177
+ message?: string;
1178
+ since?: string;
1179
+ alternative?: string;
1180
+ };
1181
+ type MetaLink = string | {
1182
+ href: string;
1183
+ description?: string;
1184
+ };
1185
+ interface MetaInput<TSpec> {
1186
+ /**
1187
+ * A name for the schema, which can be used to identify or reference the schema in documentation, tooling, or other contexts. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the expected data when used in conjunction with compatible tools.
1188
+ *
1189
+ * @remarks
1190
+ * The `name` property is a string that can be used to give the schema a human-readable identifier. It can be used in documentation, error messages, or other contexts where it is helpful to have a name associated with the schema. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the expected data when used in conjunction with compatible tools.
1191
+ */
1192
+ name?: MetaValue<TSpec, string>;
1193
+ /**
1194
+ * A version string that indicates the version of the schema. This property can be used to track changes or updates to the schema over time, allowing consumers of the schema to determine which version they are working with. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the expected data when used in conjunction with compatible tools.
1195
+ *
1196
+ * @remarks
1197
+ * The `version` property is a string that can follow any versioning scheme, such as semantic versioning (e.g., "1.0.0", "2.1.3"), date-based versioning (e.g., "2023-06-15"), or any other format that conveys the version of the schema. It is recommended to use a consistent versioning scheme across all schemas to facilitate easier tracking and management of schema versions.
1198
+ *
1199
+ * @defaultValue "1.0"
1200
+ */
1201
+ version?: MetaValue<TSpec, string | Date | number>;
1202
+ /**
1203
+ * A string that describes the schema in some way.
1204
+ */
1205
+ description?: MetaValue<TSpec, string>;
1206
+ /**
1207
+ * A string that provides a human-readable name for the schema, which can be used in documentation, tooling, or other contexts to identify or reference the schema. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the expected data when used in conjunction with compatible tools.
1208
+ *
1209
+ * @remarks
1210
+ * The `displayName` property is a string that can be used to give the schema a more user-friendly or descriptive name. It can be used in documentation, error messages, or other contexts where it is helpful to have a display name associated with the schema. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the expected data when used in conjunction with compatible tools.
1211
+ */
1212
+ displayName?: MetaValue<TSpec, string>;
1213
+ /**
1214
+ * A string that describes when the schema is used.
1215
+ */
1216
+ usage?: MetaValue<TSpec, string>;
1217
+ /**
1218
+ * Indicates whether the schema is deprecated, and optionally provides additional information about the deprecation, such as a message, the version since which it is deprecated, and an alternative schema to use instead.
1219
+ *
1220
+ * @remarks
1221
+ * The `deprecated` property can be a boolean value, where `true` indicates that the schema is deprecated and `false` indicates that it is not. It can also be a string that provides a message explaining the deprecation, or an object that includes additional details such as a message, the version since which it is deprecated, and an alternative schema to use instead. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the expected data when used in conjunction with compatible tools.
1222
+ */
1223
+ deprecated?: MetaValue<TSpec, MetaDeprecated>;
1224
+ /**
1225
+ * An array of tags associated with the schema. Tags can be used to categorize or label schemas for organizational purposes, making it easier to search, filter, or group related schemas together. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the expected data when used in conjunction with compatible tools.
1226
+ *
1227
+ * @remarks
1228
+ * Each tag in the array should be a string that represents a meaningful label or category for the schema. It is recommended to use consistent and descriptive tags across schemas to facilitate easier management and discovery of related schemas.
1229
+ */
1230
+ tags?: MetaValue<TSpec, string[]>;
1231
+ /**
1232
+ * An array of links associated with the schema. Each link can be a string representing a URL or an object containing a `href` property and an optional `description` property.
1233
+ */
1234
+ links?: MetaValue<TSpec, MetaLink[]>;
1235
+ }
1236
+ interface Meta<TSpec> {
1237
+ /**
1238
+ * A unique identifier for the schema, which can be used to reference or identify the schema in documentation, tooling, or other contexts. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the expected data when used in conjunction with compatible tools.
1239
+ *
1240
+ * @remarks
1241
+ * The `id` property is a string that can be used to give the schema a unique identifier. It can be used in documentation, error messages, or other contexts where it is helpful to have an identifier associated with the schema. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the expected data when used in conjunction with compatible tools.
1242
+ */
1243
+ id: MetaValue<TSpec, string>;
1244
+ /**
1245
+ * A name for the schema, which can be used to identify or reference the schema in documentation, tooling, or other contexts. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the expected data when used in conjunction with compatible tools.
1246
+ *
1247
+ * @remarks
1248
+ * The `name` property is a string that can be used to give the schema a human-readable identifier. It can be used in documentation, error messages, or other contexts where it is helpful to have a name associated with the schema. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the expected data when used in conjunction with compatible tools.
1249
+ */
1250
+ name: MetaValue<TSpec, string>;
1251
+ /**
1252
+ * A version string that indicates the version of the schema. This property can be used to track changes or updates to the schema over time, allowing consumers of the schema to determine which version they are working with. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the expected data when used in conjunction with compatible tools.
1253
+ *
1254
+ * @remarks
1255
+ * The `version` property is a string that can follow any versioning scheme, such as semantic versioning (e.g., "1.0.0", "2.1.3"), date-based versioning (e.g., "2023-06-15"), or any other format that conveys the version of the schema. It is recommended to use a consistent versioning scheme across all schemas to facilitate easier tracking and management of schema versions.
1256
+ *
1257
+ * @defaultValue "1.0"
1258
+ */
1259
+ version: MetaValue<TSpec, string | Date | number>;
1260
+ /**
1261
+ * A string that describes the schema in some way.
1262
+ */
1263
+ description: MetaValue<TSpec, string>;
1264
+ /**
1265
+ * A string that provides a human-readable name for the schema, which can be used in documentation, tooling, or other contexts to identify or reference the schema. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the expected data when used in conjunction with compatible tools.
1266
+ *
1267
+ * @remarks
1268
+ * The `displayName` property is a string that can be used to give the schema a more user-friendly or descriptive name. It can be used in documentation, error messages, or other contexts where it is helpful to have a display name associated with the schema. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the expected data when used in conjunction with compatible tools.
1269
+ */
1270
+ displayName: MetaValue<TSpec, string>;
1271
+ /**
1272
+ * A string that describes when the schema is used.
1273
+ */
1274
+ usage?: MetaValue<TSpec, string>;
1275
+ /**
1276
+ * Indicates whether the schema is deprecated, and optionally provides additional information about the deprecation, such as a message, the version since which it is deprecated, and an alternative schema to use instead.
1277
+ *
1278
+ * @remarks
1279
+ * The `deprecated` property can be a boolean value, where `true` indicates that the schema is deprecated and `false` indicates that it is not. It can also be a string that provides a message explaining the deprecation, or an object that includes additional details such as a message, the version since which it is deprecated, and an alternative schema to use instead. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the expected data when used in conjunction with compatible tools.
1280
+ */
1281
+ deprecated?: MetaValue<TSpec, MetaDeprecated>;
1282
+ /**
1283
+ * An array of tags associated with the schema. Tags can be used to categorize or label schemas for organizational purposes, making it easier to search, filter, or group related schemas together. The presence of this property does not affect the validation behavior of the schema itself, but it can provide additional context or information about the expected data when used in conjunction with compatible tools.
1284
+ *
1285
+ * @remarks
1286
+ * Each tag in the array should be a string that represents a meaningful label or category for the schema. It is recommended to use consistent and descriptive tags across schemas to facilitate easier management and discovery of related schemas.
1287
+ */
1288
+ tags?: MetaValue<TSpec, string[]>;
1289
+ /**
1290
+ * An array of links associated with the schema. Each link can be a string representing a URL or an object containing a `href` property and an optional `description` property.
1291
+ */
1292
+ links: MetaValue<TSpec, MetaLink[]>;
1293
+ }
1294
+ type SchemaMetaExample<TSpec> = TSpec | {
1295
+ description?: string;
1296
+ value: TSpec;
1297
+ };
1298
+ interface SchemaMetaInput<TSpec> extends MetaInput<TSpec> {
1299
+ /**
1300
+ * Examples of valid data for the schema. This can be a single example or an array of examples.
1301
+ */
1302
+ examples?: SchemaMetaExample<TSpec> | MetaValue<TSpec, SchemaMetaExample<TSpec>[]>;
1303
+ }
1304
+ interface SchemaMeta<TSpec> extends Meta<TSpec> {
1305
+ /**
1306
+ * Examples of valid data for the schema.
1307
+ */
1308
+ examples: MetaValue<TSpec, SchemaMetaExample<TSpec>[]>;
1309
+ }
1147
1310
  /**
1148
1311
  * Schema input wrapper that attaches optional contextual metadata.
1149
1312
  */
1150
1313
  interface SchemaInputWithMeta<TSpec = any> {
1151
- /** The underlying schema input payload. */
1152
- schema: SchemaSourceInput<TSpec> | Schema<JsonSchemaOf<TSpec>> | FileReferenceInput;
1153
- /** Optional contextual metadata associated with this schema input. */
1154
- meta?: SchemaMeta<TSpec>;
1314
+ /**
1315
+ * The underlying schema input payload.
1316
+ */
1317
+ schema: SchemaSourceInput<TSpec> | Schema<JsonSchemaOf<TSpec>> | LoadInput;
1318
+ /**
1319
+ * Optional contextual metadata associated with this schema input.
1320
+ */
1321
+ meta?: SchemaMetaInput<TSpec> | string;
1155
1322
  }
1156
1323
  /**
1157
1324
  * A schema extracted from a source input, normalized to JSON Schema.
1158
1325
  */
1159
1326
  interface Schema<TJsonSchema extends JsonSchema = JsonSchema> {
1160
- /** A stable content hash for the normalized schema. */
1327
+ /**
1328
+ * A stable content hash for the normalized schema.
1329
+ */
1161
1330
  hash: string;
1162
- /** The source variant used to derive the normalized {@link JsonSchema}. */
1331
+ /**
1332
+ * The source variant used to derive the normalized {@link JsonSchema}.
1333
+ */
1163
1334
  variant: SchemaInputVariant;
1164
- /** The normalized schema definition. */
1335
+ /**
1336
+ * The normalized schema definition.
1337
+ */
1165
1338
  schema: TJsonSchema;
1166
- /** Optional contextual metadata associated with the schema. */
1167
- meta?: SchemaMeta<SpecOf<TJsonSchema>>;
1339
+ /**
1340
+ * Optional contextual metadata associated with the schema.
1341
+ */
1342
+ meta: SchemaMeta<SpecOf<TJsonSchema>>;
1168
1343
  }
1169
1344
  /**
1170
1345
  * A normalized JSON Schema extracted from a source input of type `T`. This type represents the result of the schema extraction process, where a raw schema input (which could be in various formats such as Zod, Untyped, Valibot, or as a type definition in TypeScript source code) is transformed into a standardized JSON Schema format. The `SchemaOf<T>` type captures the normalized JSON Schema along with metadata about the source variant and a content hash for caching or identification purposes.
@@ -1174,12 +1349,6 @@ interface Schema<TJsonSchema extends JsonSchema = JsonSchema> {
1174
1349
  * @see {@link Schema}
1175
1350
  */
1176
1351
  type SchemaOf<TSpec> = Schema<JsonSchemaOf<TSpec>>;
1177
- interface SchemaMeta<TSpec> {
1178
- /**
1179
- * A string description (or a function that returns a string) of the schema.
1180
- */
1181
- description?: string | ((spec: TSpec) => string);
1182
- }
1183
1352
  /**
1184
1353
  * Base metadata captured for schema source inputs.
1185
1354
  */
@@ -1250,5 +1419,5 @@ interface ExtractedSchema<TSpec = any> extends SchemaOf<TSpec> {
1250
1419
  source: SchemaSource<TSpec>;
1251
1420
  }
1252
1421
  //#endregion
1253
- export { BaseSchemaSource, ExtractedSchema, JsonSchema, JsonSchemaAllOf, JsonSchemaAny, JsonSchemaAnyOf, JsonSchemaArray, JsonSchemaBigint, JsonSchemaBoolean, JsonSchemaConditionalKeywords, JsonSchemaDate, JsonSchemaDecimal, JsonSchemaDecimalFormat, JsonSchemaEnum, JsonSchemaInteger, JsonSchemaIntegerFormat, JsonSchemaKeywords, JsonSchemaLike, JsonSchemaLiteral, JsonSchemaLogicKeywords, JsonSchemaMap, JsonSchemaMetadataKeywords, JsonSchemaNativeEnum, JsonSchemaNever, JsonSchemaNull, JsonSchemaNullable, JsonSchemaNumber, JsonSchemaNumberFormat, JsonSchemaObject, JsonSchemaOf, JsonSchemaPrimitiveType, JsonSchemaPrimitiveUnion, JsonSchemaRecord, JsonSchemaRecordPropertyNames, JsonSchemaRef, JsonSchemaSchemaSource, JsonSchemaSet, JsonSchemaString, JsonSchemaStringFormat, JsonSchemaTuple, JsonSchemaType, JsonSchemaUndefined, JsonSchemaUnion, JsonSchemaUnknown, Schema, SchemaInput, SchemaInputVariant, SchemaInputWithMeta, SchemaMeta, SchemaOf, SchemaSource, SchemaSourceInput, SchemaSourceVariant, SpecOf, StandardSchemaSchemaSource, UntypedInputObject, UntypedSchema, UntypedSchemaSource, ValibotSchema, ValibotSchemaSource, Zod3SchemaSource };
1422
+ export { BaseSchemaSource, ExtractedSchema, InferExtractOptions, JsonSchema, JsonSchemaAllOf, JsonSchemaAny, JsonSchemaAnyOf, JsonSchemaArray, JsonSchemaBigint, JsonSchemaBoolean, JsonSchemaConditionalKeywords, JsonSchemaDate, JsonSchemaDecimal, JsonSchemaDecimalFormat, JsonSchemaEnum, JsonSchemaInteger, JsonSchemaIntegerFormat, JsonSchemaKeywords, JsonSchemaLike, JsonSchemaLiteral, JsonSchemaLogicKeywords, JsonSchemaMap, JsonSchemaMetadataKeywords, JsonSchemaNativeEnum, JsonSchemaNever, JsonSchemaNull, JsonSchemaNullable, JsonSchemaNumber, JsonSchemaNumberFormat, JsonSchemaObject, JsonSchemaOf, JsonSchemaPrimitiveType, JsonSchemaPrimitiveUnion, JsonSchemaRecord, JsonSchemaRecordPropertyNames, JsonSchemaRef, JsonSchemaSchemaSource, JsonSchemaSet, JsonSchemaString, JsonSchemaStringFormat, JsonSchemaTuple, JsonSchemaType, JsonSchemaUndefined, JsonSchemaUnion, JsonSchemaUnknown, Meta, MetaDeprecated, MetaInput, MetaLink, MetaValue, Schema, SchemaInput, SchemaInputVariant, SchemaInputWithMeta, SchemaMeta, SchemaMetaExample, SchemaMetaInput, SchemaOf, SchemaSource, SchemaSourceInput, SchemaSourceVariant, SpecOf, StandardSchemaSchemaSource, UntypedInputObject, UntypedSchema, UntypedSchemaSource, ValibotSchema, ValibotSchemaSource, Zod3SchemaSource };
1254
1423
  //# sourceMappingURL=types.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.cts","names":[],"sources":["../src/types.ts"],"mappings":"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"}
1
+ {"version":3,"file":"types.d.cts","names":[],"sources":["../src/types.ts"],"mappings":"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"}