@blueking/chat-helper 0.0.1-beta.16 → 0.0.1-beta.17

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.
@@ -35,6 +35,7 @@
35
35
  commands: data === null || data === void 0 ? void 0 : (_data_conversation_settings2 = data.conversation_settings) === null || _data_conversation_settings2 === void 0 ? void 0 : (_data_conversation_settings_commands = _data_conversation_settings2.commands) === null || _data_conversation_settings_commands === void 0 ? void 0 : _data_conversation_settings_commands.map((command)=>({
36
36
  id: command.id,
37
37
  name: command.name,
38
+ alias: command.alias,
38
39
  icon: command.icon,
39
40
  components: command.components.map((component)=>({
40
41
  type: component.type,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueking/chat-helper",
3
- "version": "0.0.1-beta.16",
3
+ "version": "0.0.1-beta.17",
4
4
  "description": "",
5
5
  "main": "./dist/index.ts.js",
6
6
  "types": "./dist/index.d.ts",
@@ -25,4 +25,4 @@
25
25
  "typescript": "^5.5.4",
26
26
  "vue-tsc": "^3.1.4"
27
27
  }
28
- }
28
+ }
@@ -1,2 +0,0 @@
1
- export * from './type';
2
- export * from './use-agent';
@@ -1,101 +0,0 @@
1
- import type { IMessage } from '../message/type';
2
- export interface IAgentCommand {
3
- agentId: number;
4
- components: IAgentCommandComponent[];
5
- content: null | string;
6
- icon?: string;
7
- id: string;
8
- name: string;
9
- status: string;
10
- }
11
- export interface IAgentCommandApi {
12
- agent_id: number;
13
- components: IAgentCommandComponentApi[];
14
- content: null | string;
15
- icon: string;
16
- id: string;
17
- name: string;
18
- selectedText?: null | string;
19
- status: string;
20
- }
21
- export interface IAgentCommandComponent {
22
- default?: null | string;
23
- fillBack?: boolean;
24
- fillRegx?: null | string;
25
- hide?: boolean;
26
- key: string;
27
- max?: null | number;
28
- min?: null | number;
29
- name: string;
30
- options?: unknown;
31
- placeholder?: null | string;
32
- required?: boolean;
33
- rows?: null | number;
34
- selectedText?: null | string;
35
- showSendButton?: boolean;
36
- type: string;
37
- }
38
- export interface IAgentCommandComponentApi {
39
- default: null | string;
40
- fill_back: boolean;
41
- fill_regx: null | string;
42
- key: string;
43
- max: null | number;
44
- min: null | number;
45
- name: string;
46
- options: unknown;
47
- placeholder: null | string;
48
- required: boolean;
49
- rows: null | number;
50
- type: string;
51
- }
52
- export interface IAgentInfo {
53
- agentName?: string;
54
- resources?: IAgentResources;
55
- saasUrl?: string;
56
- chatGroup?: {
57
- enabled: boolean;
58
- staff: string[];
59
- username: string;
60
- };
61
- conversationSettings?: {
62
- commands?: IAgentCommand[];
63
- enableChatSession?: boolean;
64
- openingRemark?: string;
65
- predefinedQuestions?: string[];
66
- };
67
- promptSetting?: {
68
- content?: IMessage[];
69
- };
70
- }
71
- export interface IAgentInfoApi {
72
- agent_name: string;
73
- resources?: IAgentResources;
74
- saas_url?: string;
75
- chat_group?: {
76
- enabled: boolean;
77
- staff: string[];
78
- username: string;
79
- };
80
- conversation_settings?: {
81
- commands?: IAgentCommandApi[];
82
- enable_chat_session?: boolean;
83
- opening_remark?: string;
84
- predefined_questions?: string[];
85
- };
86
- prompt_setting?: {
87
- content?: IMessage[];
88
- };
89
- }
90
- export interface IAgentResourceItem {
91
- code: string;
92
- icon: null | string;
93
- id: null | number;
94
- name: string;
95
- }
96
- export interface IAgentResources {
97
- command?: IAgentResourceItem[];
98
- knowledgebase?: IAgentResourceItem[];
99
- mcp?: IAgentResourceItem[];
100
- tool?: IAgentResourceItem[];
101
- }