@kubb/plugin-redoc 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 CHANGED
@@ -119,21 +119,21 @@ interface KubbEvents {
119
119
  */
120
120
  'hooks:end': [];
121
121
  /**
122
- * Emitted when a single hook execution starts.
123
- */
124
- 'hook:start': [command: string];
125
- /**
126
- * Emitted to execute a hook command (e.g., format or lint).
122
+ * Emitted when a single hook execution starts. (e.g., format or lint).
127
123
  * The callback should be invoked when the command completes.
128
124
  */
129
- 'hook:execute': [{
130
- command: string | URL;
125
+ 'hook:start': [{
126
+ id?: string;
127
+ command: string;
131
128
  args?: readonly string[];
132
- }, cb: () => void];
129
+ }];
133
130
  /**
134
131
  * Emitted when a single hook execution completes.
135
132
  */
136
- 'hook:end': [command: string];
133
+ 'hook:end': [{
134
+ id?: string;
135
+ command: string;
136
+ }];
137
137
  /**
138
138
  * Emitted when a new version of Kubb is available.
139
139
  */
package/dist/index.d.ts CHANGED
@@ -119,21 +119,21 @@ interface KubbEvents {
119
119
  */
120
120
  'hooks:end': [];
121
121
  /**
122
- * Emitted when a single hook execution starts.
123
- */
124
- 'hook:start': [command: string];
125
- /**
126
- * Emitted to execute a hook command (e.g., format or lint).
122
+ * Emitted when a single hook execution starts. (e.g., format or lint).
127
123
  * The callback should be invoked when the command completes.
128
124
  */
129
- 'hook:execute': [{
130
- command: string | URL;
125
+ 'hook:start': [{
126
+ id?: string;
127
+ command: string;
131
128
  args?: readonly string[];
132
- }, cb: () => void];
129
+ }];
133
130
  /**
134
131
  * Emitted when a single hook execution completes.
135
132
  */
136
- 'hook:end': [command: string];
133
+ 'hook:end': [{
134
+ id?: string;
135
+ command: string;
136
+ }];
137
137
  /**
138
138
  * Emitted when a new version of Kubb is available.
139
139
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kubb/plugin-redoc",
3
- "version": "4.12.7",
3
+ "version": "4.12.8",
4
4
  "description": "Beautiful docs with Redoc",
5
5
  "keywords": [
6
6
  "typescript",
@@ -46,14 +46,14 @@
46
46
  }
47
47
  ],
48
48
  "dependencies": {
49
- "@kubb/react-fabric": "0.7.2",
49
+ "@kubb/react-fabric": "0.7.4",
50
50
  "handlebars": "^4.7.8",
51
- "@kubb/core": "4.12.7",
52
- "@kubb/oas": "4.12.7",
53
- "@kubb/plugin-oas": "4.12.7"
51
+ "@kubb/core": "4.12.8",
52
+ "@kubb/oas": "4.12.8",
53
+ "@kubb/plugin-oas": "4.12.8"
54
54
  },
55
55
  "peerDependencies": {
56
- "@kubb/react-fabric": "0.7.2"
56
+ "@kubb/react-fabric": "0.7.4"
57
57
  },
58
58
  "engines": {
59
59
  "node": ">=20"