@kubb/agent 5.0.0-alpha.55 → 5.0.0-alpha.56
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/.output/nitro.json
CHANGED
|
@@ -6265,7 +6265,7 @@ const fsStorage = createStorage(() => ({
|
|
|
6265
6265
|
await clean(resolve(base));
|
|
6266
6266
|
}
|
|
6267
6267
|
}));
|
|
6268
|
-
var version$1 = "5.0.0-alpha.
|
|
6268
|
+
var version$1 = "5.0.0-alpha.56";
|
|
6269
6269
|
function getDiagnosticInfo() {
|
|
6270
6270
|
return {
|
|
6271
6271
|
nodeVersion: version$2,
|
|
@@ -6503,6 +6503,13 @@ async function safeBuild(setupResult) {
|
|
|
6503
6503
|
});
|
|
6504
6504
|
}
|
|
6505
6505
|
}
|
|
6506
|
+
await hooks.emit("kubb:plugins:end", {
|
|
6507
|
+
config,
|
|
6508
|
+
get files() {
|
|
6509
|
+
return driver.fileManager.files;
|
|
6510
|
+
},
|
|
6511
|
+
upsertFile: (...files2) => driver.fileManager.upsert(...files2)
|
|
6512
|
+
});
|
|
6506
6513
|
const files = driver.fileManager.files;
|
|
6507
6514
|
const parsersMap = /* @__PURE__ */ new Map();
|
|
6508
6515
|
for (const parser of config.parsers) if (parser.extNames) for (const extname of parser.extNames) parsersMap.set(extname, parser);
|
|
@@ -6661,7 +6668,7 @@ const memoryStorage = createStorage(() => {
|
|
|
6661
6668
|
};
|
|
6662
6669
|
});
|
|
6663
6670
|
|
|
6664
|
-
var version = "5.0.0-alpha.
|
|
6671
|
+
var version = "5.0.0-alpha.56";
|
|
6665
6672
|
|
|
6666
6673
|
function isCommandMessage(msg) {
|
|
6667
6674
|
return msg.type === "command";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/agent",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.56",
|
|
4
4
|
"description": "Agent server for Kubb, enabling HTTP-based access to code generation capabilities.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
@@ -43,17 +43,17 @@
|
|
|
43
43
|
"tinyexec": "^1.1.1",
|
|
44
44
|
"unstorage": "^1.17.5",
|
|
45
45
|
"ws": "^8.20.0",
|
|
46
|
-
"@kubb/ast": "5.0.0-alpha.
|
|
47
|
-
"@kubb/core": "5.0.0-alpha.
|
|
46
|
+
"@kubb/ast": "5.0.0-alpha.56",
|
|
47
|
+
"@kubb/core": "5.0.0-alpha.56"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@types/ws": "^8.18.1",
|
|
51
51
|
"msw": "^2.13.4",
|
|
52
52
|
"nitropack": "^2.13.3",
|
|
53
53
|
"vite": "^8.0.9",
|
|
54
|
-
"@kubb/parser-ts": "5.0.0-alpha.55",
|
|
55
54
|
"@internals/utils": "0.0.0",
|
|
56
|
-
"@kubb/adapter-oas": "5.0.0-alpha.
|
|
55
|
+
"@kubb/adapter-oas": "5.0.0-alpha.56",
|
|
56
|
+
"@kubb/parser-ts": "5.0.0-alpha.56"
|
|
57
57
|
},
|
|
58
58
|
"engines": {
|
|
59
59
|
"node": ">=22"
|