@stacksjs/types 0.64.3 → 0.64.5

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/types",
3
3
  "type": "module",
4
- "version": "0.64.3",
4
+ "version": "0.64.5",
5
5
  "description": "The Stacks framework types.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
package/src/cli.ts CHANGED
@@ -257,6 +257,7 @@ export type GeneratorOption =
257
257
  | 'componentMeta'
258
258
  | 'coreSymlink'
259
259
  | 'pkgxConfig'
260
+ | 'openapi'
260
261
  export type GeneratorOptions = {
261
262
  [key in GeneratorOption]?: boolean
262
263
  } & CliOptions
package/src/model.ts CHANGED
@@ -41,6 +41,7 @@ export interface ApiSettings {
41
41
  routes: {
42
42
  [key in ApiRoutes]: Action
43
43
  }
44
+ openApi: boolean
44
45
  }
45
46
 
46
47
  type ApiOptions = DeepPartial<ApiSettings>