@blueking/chat-x 0.0.1-beta.10 → 0.0.1-beta.12

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.
@@ -40,6 +40,7 @@ export interface SelectShortcutComponent extends BaseShortcutComponent<'select'>
40
40
  };
41
41
  }
42
42
  export interface Shortcut {
43
+ alias?: string;
43
44
  components?: ShortcutComponent[];
44
45
  description?: string;
45
46
  formModel?: Record<string, unknown>;
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@blueking/chat-x",
3
- "version": "0.0.1-beta.10",
3
+ "version": "0.0.1-beta.12",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
- "prepublishOnly": "pnpm build",
7
+ "prepublishOnly": "vite --config vite.config.ts build && pnpm dts",
8
8
  "dev": "vite --config vite.config.ts",
9
9
  "dts": "vue-tsc --project tsconfig.dts.json",
10
10
  "build": "vitest && vite --config vite.config.ts build && pnpm dts",