@kubb/ast 5.0.0-beta.16 → 5.0.0-beta.18
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/dist/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/nodes/schema.ts +4 -0
package/dist/index.d.ts
CHANGED
|
@@ -1120,6 +1120,10 @@ type SchemaNodeBase = BaseNode & {
|
|
|
1120
1120
|
* For example, this is `'string'` for a `uuid` schema.
|
|
1121
1121
|
*/
|
|
1122
1122
|
primitive?: PrimitiveSchemaType;
|
|
1123
|
+
/**
|
|
1124
|
+
* Schema `format` value.
|
|
1125
|
+
*/
|
|
1126
|
+
format?: string;
|
|
1123
1127
|
};
|
|
1124
1128
|
/**
|
|
1125
1129
|
* Object schema with ordered properties.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/ast",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.18",
|
|
4
4
|
"description": "Spec-agnostic AST layer for Kubb. Defines the node tree, visitor pattern, factory functions, and type guards used across all code generation plugins.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ast",
|
package/src/nodes/schema.ts
CHANGED