@lark-apaas/devtool-kits 0.1.0-alpha.1 → 0.1.0-alpha.3
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.cjs +24 -27
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +381 -384
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -119,6 +119,8 @@ interface OpenapiMiddlewareOptions {
|
|
|
119
119
|
openapiFilePath: string;
|
|
120
120
|
/** Enable source code enhancement */
|
|
121
121
|
enableEnhancement?: boolean;
|
|
122
|
+
/** Server directory for source code scanning (defaults to context.rootDir) */
|
|
123
|
+
serverDir?: string;
|
|
122
124
|
}
|
|
123
125
|
|
|
124
126
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -119,6 +119,8 @@ interface OpenapiMiddlewareOptions {
|
|
|
119
119
|
openapiFilePath: string;
|
|
120
120
|
/** Enable source code enhancement */
|
|
121
121
|
enableEnhancement?: boolean;
|
|
122
|
+
/** Server directory for source code scanning (defaults to context.rootDir) */
|
|
123
|
+
serverDir?: string;
|
|
122
124
|
}
|
|
123
125
|
|
|
124
126
|
/**
|