@e-xi/xion 0.0.27 → 0.0.28
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/main/app/index.js
CHANGED
|
@@ -44,7 +44,7 @@ import "../../chunk-files/chunk-J34MOWJP.js";
|
|
|
44
44
|
import "../../chunk-files/chunk-RSUM4GBD.js";
|
|
45
45
|
import {
|
|
46
46
|
BannerManager
|
|
47
|
-
} from "../../chunk-files/chunk-
|
|
47
|
+
} from "../../chunk-files/chunk-3T2U6UFF.js";
|
|
48
48
|
import "../../chunk-files/chunk-YLZRRUY7.js";
|
|
49
49
|
import {
|
|
50
50
|
defineAppConfig,
|
package/dist/vite/orval/index.js
CHANGED
|
@@ -43,10 +43,8 @@ async function generateOrvalGlobalTypes(options) {
|
|
|
43
43
|
const modelPaths = await exportedModelPaths(modelsDir);
|
|
44
44
|
const models = (await Promise.all(modelPaths.map(modelTypes))).flat().sort((left, right) => left.name.localeCompare(right.name));
|
|
45
45
|
const declarations = models.map((model) => {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
type ${model.name} = Models.${model.name}`;
|
|
49
|
-
}).join("\n\n");
|
|
46
|
+
return `${indent("", 8)}type ${model.name} = Models.${model.name}`;
|
|
47
|
+
}).join("\n");
|
|
50
48
|
const output = `/**
|
|
51
49
|
* @file Automatically generated by @e-xi/xion/vite/orval
|
|
52
50
|
* Do not edit manually.
|