silgi 0.32.0 → 0.32.1

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.
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import { defineCommand, runMain } from 'citty';
3
3
 
4
- const version = "0.32.0";
4
+ const version = "0.32.1";
5
5
  const packageJson = {
6
6
  version: version};
7
7
 
@@ -17,7 +17,7 @@ import { defu } from 'defu';
17
17
  const SilgiCLIDefaults = {
18
18
  // General
19
19
  debug: isDebug === true ? true : void 0,
20
- schema: "zod",
20
+ schemaVendor: "zod",
21
21
  // timing: isDebug,
22
22
  logLevel: isTest ? 1 : 3,
23
23
  // runtimeConfig: { app: {}, silgi: {} },
@@ -594,7 +594,7 @@ interface SilgiCLIOptions extends PresetOptions {
594
594
  commandType: CommandType;
595
595
  commands: Commands$1[];
596
596
  routeRules: SilgiRouteRules$1;
597
- schema: Schema | Schema[];
597
+ schemaVendor: Schema | Schema[];
598
598
  environments: DotenvOptions$1[];
599
599
  activeEnvironment: 'prod' | 'docker' | 'staging' | 'testing' | '.env' | (string & {});
600
600
  envOptions: EnvOptions$1;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "silgi",
3
3
  "type": "module",
4
- "version": "0.32.0",
4
+ "version": "0.32.1",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "exports": {