@housekit/kit 0.1.19 → 0.1.20
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/config.d.ts +2 -25
- package/dist/index.js +2520 -68
- package/dist/loader.d.ts +1 -1
- package/dist/ui.d.ts +3 -0
- package/package.json +4 -2
package/dist/loader.d.ts
CHANGED
|
@@ -2,4 +2,4 @@ export declare function loadSchema(schemaPath: string, options?: {
|
|
|
2
2
|
quiet?: boolean;
|
|
3
3
|
}): Promise<Record<string, any>>;
|
|
4
4
|
export declare function getConfigPath(root?: string): Promise<string>;
|
|
5
|
-
export declare function loadConfig(): Promise<import("
|
|
5
|
+
export declare function loadConfig(): Promise<import("@housekit/orm").HouseKitConfig>;
|
package/dist/ui.d.ts
CHANGED
|
@@ -3,6 +3,9 @@ export declare function info(message: string): void;
|
|
|
3
3
|
export declare function warn(message: string): void;
|
|
4
4
|
export declare function success(message: string): void;
|
|
5
5
|
export declare function error(message: string): void;
|
|
6
|
+
export declare function bold(message: string): string;
|
|
7
|
+
export declare function box(message: string, options?: any): void;
|
|
8
|
+
export declare function title(message: string): void;
|
|
6
9
|
export declare function createSpinner(message: string): import("ora").Ora;
|
|
7
10
|
export declare function setGlobalYesMode(enabled: boolean): void;
|
|
8
11
|
export declare function confirmPrompt(message: string, defaultYes?: boolean): Promise<boolean>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@housekit/kit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.20",
|
|
4
4
|
"description": "CLI tool for HouseKit - manage ClickHouse schemas, migrations, and database operations with type-safe workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -48,10 +48,12 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@clickhouse/client": "^1.14.0",
|
|
51
|
-
"@housekit/orm": "
|
|
51
|
+
"@housekit/orm": "^0.1.26",
|
|
52
|
+
"boxen": "8.0.1",
|
|
52
53
|
"chalk": "^5.6.2",
|
|
53
54
|
"cli-table3": "^0.6.5",
|
|
54
55
|
"commander": "^12.0.0",
|
|
56
|
+
"gradient-string": "3.0.0",
|
|
55
57
|
"inquirer": "^13.0.1",
|
|
56
58
|
"jiti": "^2.6.1",
|
|
57
59
|
"ora": "^9.0.0",
|