@ostack.tech/ui-kform-scaffolder 0.3.3 → 0.3.4

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.
@@ -6,6 +6,16 @@ export interface ScaffoldingData extends KFormScaffoldingData {
6
6
  serializationFormat?: SerializationFormat;
7
7
  /** Application's default locale. */
8
8
  defaultLocale?: string;
9
+ /**
10
+ * Whether to include the `kotlinx.datetime` library. By default, this is
11
+ * inferred from the schematic.
12
+ */
13
+ includeKotlinxDatetime?: boolean;
14
+ /**
15
+ * Whether to include the `kt-math` library. By default, this is inferred from
16
+ * the schematic.
17
+ */
18
+ includeKtMath?: boolean;
9
19
  /** `gradle.properties` group. */
10
20
  gradlePropertiesGroup?: string;
11
21
  /** Base path of the API. */
@@ -18,4 +28,8 @@ export interface ScaffoldingData extends KFormScaffoldingData {
18
28
  viteConfigOutDir?: string;
19
29
  /** Proxy target for the Vite config. */
20
30
  viteConfigProxyTarget?: string;
31
+ /** Version of the JVM toolchain to specify in `libs.versions.toml`. */
32
+ jvmToolchainVersion?: string;
33
+ /** Version of Node.js to specify in `libs.versions.toml`. */
34
+ nodejsVersion?: string;
21
35
  }
@@ -1,3 +1,5 @@
1
1
  import { Schematic } from '@ostack.tech/kform-scaffolder';
2
2
  import { ScaffoldingData } from '../ScaffoldingData.ts';
3
+ export declare const DEFAULT_JVM_TOOLCHAIN_VERSION = "17";
4
+ export declare const DEFAULT_NODEJS_VERSION = "22.20.0";
3
5
  export declare function scaffoldGradleProject(schematic: Schematic, data: ScaffoldingData): void;