|
@@ -49,7 +49,7 @@ declare namespace API {
|
|
|
/** 任务描述 */
|
|
|
description?: string;
|
|
|
/** cron表达式 */
|
|
|
- cron: string;
|
|
|
+ cron?: string;
|
|
|
/** 机器人编码 */
|
|
|
robotCode: string;
|
|
|
/** 会话类型:1:单聊,2:群聊 */
|
|
@@ -114,22 +114,6 @@ declare namespace API {
|
|
|
type AlertConfigDto = {
|
|
|
/** 机器人编码 */
|
|
|
robotCode?: string;
|
|
|
- /** 机器人密钥 */
|
|
|
- robotSecret?: string;
|
|
|
- /** 群id */
|
|
|
- openConversationId?: string;
|
|
|
- /** 接收机器人消息的用户的手机号列表 */
|
|
|
- phones?: string;
|
|
|
- /** 接收机器人消息的用户的userId列表 */
|
|
|
- userIds?: string;
|
|
|
- };
|
|
|
-
|
|
|
- type AlertConfigPo = {
|
|
|
- id?: number;
|
|
|
- /** 机器人编码 */
|
|
|
- robotCode?: string;
|
|
|
- /** 机器人密钥 */
|
|
|
- robotSecret?: string;
|
|
|
/** 群id */
|
|
|
openConversationId?: string;
|
|
|
/** 接收机器人消息的用户的手机号列表 */
|
|
@@ -293,6 +277,23 @@ declare namespace API {
|
|
|
taskId: string;
|
|
|
};
|
|
|
|
|
|
+ type GetAlertConfigVo = {
|
|
|
+ /** id */
|
|
|
+ id?: number;
|
|
|
+ /** 机器人编码 */
|
|
|
+ robotCode?: string;
|
|
|
+ /** 机器人名称 */
|
|
|
+ robotName?: string;
|
|
|
+ /** 机器人密钥 */
|
|
|
+ robotSecret?: string;
|
|
|
+ /** 群id */
|
|
|
+ openConversationId?: string;
|
|
|
+ /** 接收机器人消息的用户的手机号列表 */
|
|
|
+ phones?: string;
|
|
|
+ /** 接收机器人消息的用户的userId列表 */
|
|
|
+ userIds?: string;
|
|
|
+ };
|
|
|
+
|
|
|
type GetAppRobotOptionsDto = {
|
|
|
/** 应用编码 */
|
|
|
appId: string;
|
|
@@ -317,6 +318,13 @@ declare namespace API {
|
|
|
label?: string;
|
|
|
};
|
|
|
|
|
|
+ type GetRobotOptionsVo = {
|
|
|
+ /** 机器人编码 */
|
|
|
+ value?: string;
|
|
|
+ /** 机器人名称 */
|
|
|
+ label?: string;
|
|
|
+ };
|
|
|
+
|
|
|
type GetUserIdByMobileDto = {
|
|
|
/** 机器人的编码 */
|
|
|
robotCode: string;
|
|
@@ -765,18 +773,6 @@ declare namespace API {
|
|
|
list?: ListRobotVo[];
|
|
|
};
|
|
|
|
|
|
- type RAlertConfigPo = {
|
|
|
- /** 是否成功 */
|
|
|
- success?: boolean;
|
|
|
- /** 错误码 */
|
|
|
- code?: number;
|
|
|
- /** 提示信息 */
|
|
|
- message?: string;
|
|
|
- data?: AlertConfigPo;
|
|
|
- /** 请求跟踪id */
|
|
|
- traceId?: string;
|
|
|
- };
|
|
|
-
|
|
|
type RBatchRecallOtoMessagesVo = {
|
|
|
/** 是否成功 */
|
|
|
success?: boolean;
|
|
@@ -822,6 +818,18 @@ declare namespace API {
|
|
|
appId: string;
|
|
|
};
|
|
|
|
|
|
+ type RGetAlertConfigVo = {
|
|
|
+ /** 是否成功 */
|
|
|
+ success?: boolean;
|
|
|
+ /** 错误码 */
|
|
|
+ code?: number;
|
|
|
+ /** 提示信息 */
|
|
|
+ message?: string;
|
|
|
+ data?: GetAlertConfigVo;
|
|
|
+ /** 请求跟踪id */
|
|
|
+ traceId?: string;
|
|
|
+ };
|
|
|
+
|
|
|
type RGetUserIdByMobileVo = {
|
|
|
/** 是否成功 */
|
|
|
success?: boolean;
|
|
@@ -872,6 +880,19 @@ declare namespace API {
|
|
|
traceId?: string;
|
|
|
};
|
|
|
|
|
|
+ type RListGetRobotOptionsVo = {
|
|
|
+ /** 是否成功 */
|
|
|
+ success?: boolean;
|
|
|
+ /** 错误码 */
|
|
|
+ code?: number;
|
|
|
+ /** 提示信息 */
|
|
|
+ message?: string;
|
|
|
+ /** 数据 */
|
|
|
+ data?: GetRobotOptionsVo[];
|
|
|
+ /** 请求跟踪id */
|
|
|
+ traceId?: string;
|
|
|
+ };
|
|
|
+
|
|
|
type RLoginVo = {
|
|
|
/** 是否成功 */
|
|
|
success?: boolean;
|
|
@@ -1118,7 +1139,7 @@ declare namespace API {
|
|
|
/** 任务描述 */
|
|
|
description?: string;
|
|
|
/** cron表达式 */
|
|
|
- cron: string;
|
|
|
+ cron?: string;
|
|
|
/** 机器人编码 */
|
|
|
robotCode: string;
|
|
|
/** 会话类型:1:单聊,2:群聊 */
|