@kubb/oas 4.12.7 → 4.12.8
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.cts +9 -9
- package/dist/index.d.ts +9 -9
- package/package.json +3 -3
- package/src/utils.spec.ts +1 -0
package/dist/index.d.cts
CHANGED
|
@@ -148,21 +148,21 @@ interface KubbEvents {
|
|
|
148
148
|
*/
|
|
149
149
|
'hooks:end': [];
|
|
150
150
|
/**
|
|
151
|
-
* Emitted when a single hook execution starts.
|
|
152
|
-
*/
|
|
153
|
-
'hook:start': [command: string];
|
|
154
|
-
/**
|
|
155
|
-
* Emitted to execute a hook command (e.g., format or lint).
|
|
151
|
+
* Emitted when a single hook execution starts. (e.g., format or lint).
|
|
156
152
|
* The callback should be invoked when the command completes.
|
|
157
153
|
*/
|
|
158
|
-
'hook:
|
|
159
|
-
|
|
154
|
+
'hook:start': [{
|
|
155
|
+
id?: string;
|
|
156
|
+
command: string;
|
|
160
157
|
args?: readonly string[];
|
|
161
|
-
}
|
|
158
|
+
}];
|
|
162
159
|
/**
|
|
163
160
|
* Emitted when a single hook execution completes.
|
|
164
161
|
*/
|
|
165
|
-
'hook:end': [
|
|
162
|
+
'hook:end': [{
|
|
163
|
+
id?: string;
|
|
164
|
+
command: string;
|
|
165
|
+
}];
|
|
166
166
|
/**
|
|
167
167
|
* Emitted when a new version of Kubb is available.
|
|
168
168
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -148,21 +148,21 @@ interface KubbEvents {
|
|
|
148
148
|
*/
|
|
149
149
|
'hooks:end': [];
|
|
150
150
|
/**
|
|
151
|
-
* Emitted when a single hook execution starts.
|
|
152
|
-
*/
|
|
153
|
-
'hook:start': [command: string];
|
|
154
|
-
/**
|
|
155
|
-
* Emitted to execute a hook command (e.g., format or lint).
|
|
151
|
+
* Emitted when a single hook execution starts. (e.g., format or lint).
|
|
156
152
|
* The callback should be invoked when the command completes.
|
|
157
153
|
*/
|
|
158
|
-
'hook:
|
|
159
|
-
|
|
154
|
+
'hook:start': [{
|
|
155
|
+
id?: string;
|
|
156
|
+
command: string;
|
|
160
157
|
args?: readonly string[];
|
|
161
|
-
}
|
|
158
|
+
}];
|
|
162
159
|
/**
|
|
163
160
|
* Emitted when a single hook execution completes.
|
|
164
161
|
*/
|
|
165
|
-
'hook:end': [
|
|
162
|
+
'hook:end': [{
|
|
163
|
+
id?: string;
|
|
164
|
+
command: string;
|
|
165
|
+
}];
|
|
166
166
|
/**
|
|
167
167
|
* Emitted when a new version of Kubb is available.
|
|
168
168
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/oas",
|
|
3
|
-
"version": "4.12.
|
|
3
|
+
"version": "4.12.8",
|
|
4
4
|
"description": "OpenAPI Specification (OAS) utilities and helpers for Kubb, providing parsing, normalization, and manipulation of OpenAPI/Swagger schemas.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"openapi",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
}
|
|
57
57
|
],
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@redocly/openapi-core": "^2.
|
|
59
|
+
"@redocly/openapi-core": "^2.14.0",
|
|
60
60
|
"hotscript": "^1.0.13",
|
|
61
61
|
"json-schema-to-ts": "^3.1.1",
|
|
62
62
|
"jsonpointer": "^5.0.1",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"remeda": "^2.32.0",
|
|
67
67
|
"swagger2openapi": "^7.0.8",
|
|
68
68
|
"ts-toolbelt": "^9.6.0",
|
|
69
|
-
"@kubb/core": "4.12.
|
|
69
|
+
"@kubb/core": "4.12.8"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@stoplight/yaml": "^4.3.0",
|
package/src/utils.spec.ts
CHANGED