gomtm 0.0.235 → 0.0.236
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/esm/components/MtmInstallScript.js +4 -6
- package/dist/esm/gomtmpb/descriptions/mtm/sppb/conf.d.ts +0 -0
- package/dist/esm/gomtmpb/descriptions/mtm/sppb/conf.js +0 -0
- package/dist/esm/gomtmpb/mtm/sppb/bot-BotService_connectquery.d.ts +41 -1
- package/dist/esm/gomtmpb/mtm/sppb/bot-BotService_connectquery.js +46 -2
- package/dist/esm/gomtmpb/mtm/sppb/bot_connect.d.ts +25 -1
- package/dist/esm/gomtmpb/mtm/sppb/bot_connect.js +45 -1
- package/dist/esm/gomtmpb/mtm/sppb/bot_pb.d.ts +105 -11
- package/dist/esm/gomtmpb/mtm/sppb/bot_pb.js +362 -36
- package/dist/esm/gomtmpb/mtm/sppb/conf-ConfService_connectquery.d.ts +53 -0
- package/dist/esm/gomtmpb/mtm/sppb/conf-ConfService_connectquery.js +60 -0
- package/dist/esm/gomtmpb/mtm/sppb/conf_connect.d.ts +38 -0
- package/dist/esm/gomtmpb/mtm/sppb/conf_connect.js +56 -0
- package/dist/esm/gomtmpb/mtm/sppb/conf_pb.d.ts +481 -0
- package/dist/esm/gomtmpb/mtm/sppb/conf_pb.js +2367 -0
- package/dist/esm/messageTypeRegistry.d.ts +1 -0
- package/dist/esm/messageTypeRegistry.js +3 -3
- package/dist/esm/providers/GomtmProvider.js +5 -1
- package/dist/esm/validations/spContentModi.d.ts +4 -4
- package/dist/esm/validations/spRoute.d.ts +8 -8
- package/dist/esm/validations/user.d.ts +6 -6
- package/dist/tsconfig.type.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/dist/esm/store/ExampleStoreProvider.d.ts +0 -6
- package/dist/esm/store/ExampleStoreProvider.js +0 -43
- package/dist/esm/store/gomtm.atom.d.ts +0 -4
- package/dist/esm/store/gomtm.atom.js +0 -12
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
-
import {
|
|
4
|
-
import { jobRun } from "../gomtmpb/mtm/sppb/bot-BotService_connectquery";
|
|
3
|
+
import { useSuspenseQuery } from "../connectquery";
|
|
5
4
|
import { getMeta } from "../gomtmpb/mtm/sppb/mtm-MtmService_connectquery";
|
|
6
5
|
const MtmInstallScript = (props) => {
|
|
7
6
|
var _a, _b;
|
|
8
7
|
const mtmMetaQuery = useSuspenseQuery(getMeta);
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
`curl -sSL curl ${(_b = (_a = mtmMetaQuery.data) == null ? void 0 : _a.meta) == null ? void 0 : _b.publicUrl}/api/mtmbot/install | bash`
|
|
8
|
+
return /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsxs("div", { className: "bg-blue-300 p-2", children: [
|
|
9
|
+
"common bot : ",
|
|
10
|
+
`curl -sSL ${(_b = (_a = mtmMetaQuery.data) == null ? void 0 : _a.meta) == null ? void 0 : _b.publicUrl}/api/mtmbot/install | bash`
|
|
13
11
|
] }) });
|
|
14
12
|
};
|
|
15
13
|
export {
|
|
File without changes
|
|
File without changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
2
|
-
import { BotGetReq, BotListReq, BotListRes, BotNode, ConsumHandler, ConsumHandlerGetReq, ConsumMessageReq, ConsumMessageRes, DevDockerBuildMtmReq, DevDockerBuildMtmRes, DevStartChromeReq, DevStartChromeRes, JobDefine, JobDefineCreateReq, JobDefineGetReq, JobListRes, JobRunReply, JobRunReq } from "./bot_pb";
|
|
2
|
+
import { BotGetReq, BotListReq, BotListRes, BotNode, CommonTaskRes, ConsumHandler, ConsumHandlerGetReq, ConsumMessageReq, ConsumMessageRes, DevDockerBuildMtmReq, DevDockerBuildMtmRes, DevStartChromeReq, DevStartChromeRes, GetTaskLogsReq, GetTaskLogsRes, GetTaskResultReq, GetTaskResultRes, GetTaskStatusReq, GetTaskStatusRes, JobDefine, JobDefineCreateReq, JobDefineGetReq, JobListRes, JobRunReply, JobRunReq, TaskHelloReq } from "./bot_pb";
|
|
3
3
|
import { CommontListReq, CommontListRes, ResDeleteReq, Result } from "./mtm_pb";
|
|
4
4
|
export declare const botList: {
|
|
5
5
|
readonly localName: "botList";
|
|
@@ -131,3 +131,43 @@ export declare const devDockerBuildMtm: {
|
|
|
131
131
|
readonly typeName: "sppb.BotService";
|
|
132
132
|
};
|
|
133
133
|
};
|
|
134
|
+
export declare const getTaskLogs: {
|
|
135
|
+
readonly localName: "getTaskLogs";
|
|
136
|
+
readonly name: "GetTaskLogs";
|
|
137
|
+
readonly kind: MethodKind.Unary;
|
|
138
|
+
readonly I: typeof GetTaskLogsReq;
|
|
139
|
+
readonly O: typeof GetTaskLogsRes;
|
|
140
|
+
readonly service: {
|
|
141
|
+
readonly typeName: "sppb.BotService";
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
export declare const getTaskStatus: {
|
|
145
|
+
readonly localName: "getTaskStatus";
|
|
146
|
+
readonly name: "GetTaskStatus";
|
|
147
|
+
readonly kind: MethodKind.Unary;
|
|
148
|
+
readonly I: typeof GetTaskStatusReq;
|
|
149
|
+
readonly O: typeof GetTaskStatusRes;
|
|
150
|
+
readonly service: {
|
|
151
|
+
readonly typeName: "sppb.BotService";
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
export declare const getTaskResult: {
|
|
155
|
+
readonly localName: "getTaskResult";
|
|
156
|
+
readonly name: "GetTaskResult";
|
|
157
|
+
readonly kind: MethodKind.Unary;
|
|
158
|
+
readonly I: typeof GetTaskResultReq;
|
|
159
|
+
readonly O: typeof GetTaskResultRes;
|
|
160
|
+
readonly service: {
|
|
161
|
+
readonly typeName: "sppb.BotService";
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
export declare const taskHello: {
|
|
165
|
+
readonly localName: "taskHello";
|
|
166
|
+
readonly name: "TaskHello";
|
|
167
|
+
readonly kind: MethodKind.Unary;
|
|
168
|
+
readonly I: typeof TaskHelloReq;
|
|
169
|
+
readonly O: typeof CommonTaskRes;
|
|
170
|
+
readonly service: {
|
|
171
|
+
readonly typeName: "sppb.BotService";
|
|
172
|
+
};
|
|
173
|
+
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
2
|
-
import { BotGetReq, BotListReq, BotListRes, BotNode, ConsumHandler, ConsumHandlerGetReq, ConsumMessageReq, ConsumMessageRes, DevDockerBuildMtmReq, DevDockerBuildMtmRes, DevStartChromeReq, DevStartChromeRes, JobDefine, JobDefineCreateReq, JobDefineGetReq, JobListRes, JobRunReply, JobRunReq } from "./bot_pb";
|
|
2
|
+
import { BotGetReq, BotListReq, BotListRes, BotNode, CommonTaskRes, ConsumHandler, ConsumHandlerGetReq, ConsumMessageReq, ConsumMessageRes, DevDockerBuildMtmReq, DevDockerBuildMtmRes, DevStartChromeReq, DevStartChromeRes, GetTaskLogsReq, GetTaskLogsRes, GetTaskResultReq, GetTaskResultRes, GetTaskStatusReq, GetTaskStatusRes, JobDefine, JobDefineCreateReq, JobDefineGetReq, JobListRes, JobRunReply, JobRunReq, TaskHelloReq } from "./bot_pb";
|
|
3
3
|
import { CommontListReq, CommontListRes, ResDeleteReq, Result } from "./mtm_pb";
|
|
4
4
|
const botList = {
|
|
5
5
|
localName: "botList",
|
|
@@ -131,6 +131,46 @@ const devDockerBuildMtm = {
|
|
|
131
131
|
typeName: "sppb.BotService"
|
|
132
132
|
}
|
|
133
133
|
};
|
|
134
|
+
const getTaskLogs = {
|
|
135
|
+
localName: "getTaskLogs",
|
|
136
|
+
name: "GetTaskLogs",
|
|
137
|
+
kind: MethodKind.Unary,
|
|
138
|
+
I: GetTaskLogsReq,
|
|
139
|
+
O: GetTaskLogsRes,
|
|
140
|
+
service: {
|
|
141
|
+
typeName: "sppb.BotService"
|
|
142
|
+
}
|
|
143
|
+
};
|
|
144
|
+
const getTaskStatus = {
|
|
145
|
+
localName: "getTaskStatus",
|
|
146
|
+
name: "GetTaskStatus",
|
|
147
|
+
kind: MethodKind.Unary,
|
|
148
|
+
I: GetTaskStatusReq,
|
|
149
|
+
O: GetTaskStatusRes,
|
|
150
|
+
service: {
|
|
151
|
+
typeName: "sppb.BotService"
|
|
152
|
+
}
|
|
153
|
+
};
|
|
154
|
+
const getTaskResult = {
|
|
155
|
+
localName: "getTaskResult",
|
|
156
|
+
name: "GetTaskResult",
|
|
157
|
+
kind: MethodKind.Unary,
|
|
158
|
+
I: GetTaskResultReq,
|
|
159
|
+
O: GetTaskResultRes,
|
|
160
|
+
service: {
|
|
161
|
+
typeName: "sppb.BotService"
|
|
162
|
+
}
|
|
163
|
+
};
|
|
164
|
+
const taskHello = {
|
|
165
|
+
localName: "taskHello",
|
|
166
|
+
name: "TaskHello",
|
|
167
|
+
kind: MethodKind.Unary,
|
|
168
|
+
I: TaskHelloReq,
|
|
169
|
+
O: CommonTaskRes,
|
|
170
|
+
service: {
|
|
171
|
+
typeName: "sppb.BotService"
|
|
172
|
+
}
|
|
173
|
+
};
|
|
134
174
|
export {
|
|
135
175
|
botDelete,
|
|
136
176
|
botGet,
|
|
@@ -140,9 +180,13 @@ export {
|
|
|
140
180
|
consumMessage,
|
|
141
181
|
devDockerBuildMtm,
|
|
142
182
|
devStartChrome,
|
|
183
|
+
getTaskLogs,
|
|
184
|
+
getTaskResult,
|
|
185
|
+
getTaskStatus,
|
|
143
186
|
jobDefineCreate,
|
|
144
187
|
jobDefineGet,
|
|
145
188
|
jobDefineList,
|
|
146
189
|
jobList,
|
|
147
|
-
jobRun
|
|
190
|
+
jobRun,
|
|
191
|
+
taskHello
|
|
148
192
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BotGetReq, BotListReq, BotListRes, BotNode, ConsumHandler, ConsumHandlerGetReq, ConsumMessageReq, ConsumMessageRes, DevDockerBuildMtmReq, DevDockerBuildMtmRes, DevStartChromeReq, DevStartChromeRes, JobDefine, JobDefineCreateReq, JobDefineGetReq, JobListRes, JobRunReply, JobRunReq } from "./bot_pb";
|
|
1
|
+
import { BotGetReq, BotListReq, BotListRes, BotNode, CommonTaskRes, ConsumHandler, ConsumHandlerGetReq, ConsumMessageReq, ConsumMessageRes, DevDockerBuildMtmReq, DevDockerBuildMtmRes, DevStartChromeReq, DevStartChromeRes, GetTaskLogsReq, GetTaskLogsRes, GetTaskResultReq, GetTaskResultRes, GetTaskStatusReq, GetTaskStatusRes, JobDefine, JobDefineCreateReq, JobDefineGetReq, JobListRes, JobRunReply, JobRunReq, TaskHelloReq } from "./bot_pb";
|
|
2
2
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
3
3
|
import { CommontListReq, CommontListRes, ResDeleteReq, Result } from "./mtm_pb";
|
|
4
4
|
export declare const BotService: {
|
|
@@ -82,5 +82,29 @@ export declare const BotService: {
|
|
|
82
82
|
readonly O: typeof DevDockerBuildMtmRes;
|
|
83
83
|
readonly kind: MethodKind.Unary;
|
|
84
84
|
};
|
|
85
|
+
readonly getTaskLogs: {
|
|
86
|
+
readonly name: "GetTaskLogs";
|
|
87
|
+
readonly I: typeof GetTaskLogsReq;
|
|
88
|
+
readonly O: typeof GetTaskLogsRes;
|
|
89
|
+
readonly kind: MethodKind.Unary;
|
|
90
|
+
};
|
|
91
|
+
readonly getTaskStatus: {
|
|
92
|
+
readonly name: "GetTaskStatus";
|
|
93
|
+
readonly I: typeof GetTaskStatusReq;
|
|
94
|
+
readonly O: typeof GetTaskStatusRes;
|
|
95
|
+
readonly kind: MethodKind.Unary;
|
|
96
|
+
};
|
|
97
|
+
readonly getTaskResult: {
|
|
98
|
+
readonly name: "GetTaskResult";
|
|
99
|
+
readonly I: typeof GetTaskResultReq;
|
|
100
|
+
readonly O: typeof GetTaskResultRes;
|
|
101
|
+
readonly kind: MethodKind.Unary;
|
|
102
|
+
};
|
|
103
|
+
readonly taskHello: {
|
|
104
|
+
readonly name: "TaskHello";
|
|
105
|
+
readonly I: typeof TaskHelloReq;
|
|
106
|
+
readonly O: typeof CommonTaskRes;
|
|
107
|
+
readonly kind: MethodKind.Unary;
|
|
108
|
+
};
|
|
85
109
|
};
|
|
86
110
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BotGetReq, BotListReq, BotListRes, BotNode, ConsumHandler, ConsumHandlerGetReq, ConsumMessageReq, ConsumMessageRes, DevDockerBuildMtmReq, DevDockerBuildMtmRes, DevStartChromeReq, DevStartChromeRes, JobDefine, JobDefineCreateReq, JobDefineGetReq, JobListRes, JobRunReply, JobRunReq } from "./bot_pb";
|
|
1
|
+
import { BotGetReq, BotListReq, BotListRes, BotNode, CommonTaskRes, ConsumHandler, ConsumHandlerGetReq, ConsumMessageReq, ConsumMessageRes, DevDockerBuildMtmReq, DevDockerBuildMtmRes, DevStartChromeReq, DevStartChromeRes, GetTaskLogsReq, GetTaskLogsRes, GetTaskResultReq, GetTaskResultRes, GetTaskStatusReq, GetTaskStatusRes, JobDefine, JobDefineCreateReq, JobDefineGetReq, JobListRes, JobRunReply, JobRunReq, TaskHelloReq } from "./bot_pb";
|
|
2
2
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
3
3
|
import { CommontListReq, CommontListRes, ResDeleteReq, Result } from "./mtm_pb";
|
|
4
4
|
const BotService = {
|
|
@@ -128,6 +128,50 @@ const BotService = {
|
|
|
128
128
|
I: DevDockerBuildMtmReq,
|
|
129
129
|
O: DevDockerBuildMtmRes,
|
|
130
130
|
kind: MethodKind.Unary
|
|
131
|
+
},
|
|
132
|
+
/**
|
|
133
|
+
* 获取任务消息日志
|
|
134
|
+
*
|
|
135
|
+
* @generated from rpc sppb.BotService.GetTaskLogs
|
|
136
|
+
*/
|
|
137
|
+
getTaskLogs: {
|
|
138
|
+
name: "GetTaskLogs",
|
|
139
|
+
I: GetTaskLogsReq,
|
|
140
|
+
O: GetTaskLogsRes,
|
|
141
|
+
kind: MethodKind.Unary
|
|
142
|
+
},
|
|
143
|
+
/**
|
|
144
|
+
* 获取当前任务状态
|
|
145
|
+
*
|
|
146
|
+
* @generated from rpc sppb.BotService.GetTaskStatus
|
|
147
|
+
*/
|
|
148
|
+
getTaskStatus: {
|
|
149
|
+
name: "GetTaskStatus",
|
|
150
|
+
I: GetTaskStatusReq,
|
|
151
|
+
O: GetTaskStatusRes,
|
|
152
|
+
kind: MethodKind.Unary
|
|
153
|
+
},
|
|
154
|
+
/**
|
|
155
|
+
* 获取任务结果
|
|
156
|
+
*
|
|
157
|
+
* @generated from rpc sppb.BotService.GetTaskResult
|
|
158
|
+
*/
|
|
159
|
+
getTaskResult: {
|
|
160
|
+
name: "GetTaskResult",
|
|
161
|
+
I: GetTaskResultReq,
|
|
162
|
+
O: GetTaskResultRes,
|
|
163
|
+
kind: MethodKind.Unary
|
|
164
|
+
},
|
|
165
|
+
/**
|
|
166
|
+
* 范例异步任务
|
|
167
|
+
*
|
|
168
|
+
* @generated from rpc sppb.BotService.TaskHello
|
|
169
|
+
*/
|
|
170
|
+
taskHello: {
|
|
171
|
+
name: "TaskHello",
|
|
172
|
+
I: TaskHelloReq,
|
|
173
|
+
O: CommonTaskRes,
|
|
174
|
+
kind: MethodKind.Unary
|
|
131
175
|
}
|
|
132
176
|
}
|
|
133
177
|
};
|
|
@@ -10,6 +10,111 @@ export declare enum MtBotConsumerType {
|
|
|
10
10
|
COMMON = 0,
|
|
11
11
|
DEV = 1
|
|
12
12
|
}
|
|
13
|
+
export declare class TaskCallOptions extends Message<TaskCallOptions> {
|
|
14
|
+
params: {
|
|
15
|
+
[key: string]: string;
|
|
16
|
+
};
|
|
17
|
+
async: boolean;
|
|
18
|
+
constructor(data?: PartialMessage<TaskCallOptions>);
|
|
19
|
+
static readonly runtime: typeof proto3;
|
|
20
|
+
static readonly typeName = "sppb.TaskCallOptions";
|
|
21
|
+
static readonly fields: FieldList;
|
|
22
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TaskCallOptions;
|
|
23
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TaskCallOptions;
|
|
24
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TaskCallOptions;
|
|
25
|
+
static equals(a: TaskCallOptions | PlainMessage<TaskCallOptions> | undefined, b: TaskCallOptions | PlainMessage<TaskCallOptions> | undefined): boolean;
|
|
26
|
+
}
|
|
27
|
+
export declare class CommonTaskRes extends Message<CommonTaskRes> {
|
|
28
|
+
ticketId: string;
|
|
29
|
+
constructor(data?: PartialMessage<CommonTaskRes>);
|
|
30
|
+
static readonly runtime: typeof proto3;
|
|
31
|
+
static readonly typeName = "sppb.CommonTaskRes";
|
|
32
|
+
static readonly fields: FieldList;
|
|
33
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CommonTaskRes;
|
|
34
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CommonTaskRes;
|
|
35
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CommonTaskRes;
|
|
36
|
+
static equals(a: CommonTaskRes | PlainMessage<CommonTaskRes> | undefined, b: CommonTaskRes | PlainMessage<CommonTaskRes> | undefined): boolean;
|
|
37
|
+
}
|
|
38
|
+
export declare class GetTaskStatusRes extends Message<GetTaskStatusRes> {
|
|
39
|
+
taskStatusCode: string;
|
|
40
|
+
constructor(data?: PartialMessage<GetTaskStatusRes>);
|
|
41
|
+
static readonly runtime: typeof proto3;
|
|
42
|
+
static readonly typeName = "sppb.GetTaskStatusRes";
|
|
43
|
+
static readonly fields: FieldList;
|
|
44
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetTaskStatusRes;
|
|
45
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetTaskStatusRes;
|
|
46
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetTaskStatusRes;
|
|
47
|
+
static equals(a: GetTaskStatusRes | PlainMessage<GetTaskStatusRes> | undefined, b: GetTaskStatusRes | PlainMessage<GetTaskStatusRes> | undefined): boolean;
|
|
48
|
+
}
|
|
49
|
+
export declare class GetTaskLogsReq extends Message<GetTaskLogsReq> {
|
|
50
|
+
ticketId: string;
|
|
51
|
+
constructor(data?: PartialMessage<GetTaskLogsReq>);
|
|
52
|
+
static readonly runtime: typeof proto3;
|
|
53
|
+
static readonly typeName = "sppb.GetTaskLogsReq";
|
|
54
|
+
static readonly fields: FieldList;
|
|
55
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetTaskLogsReq;
|
|
56
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetTaskLogsReq;
|
|
57
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetTaskLogsReq;
|
|
58
|
+
static equals(a: GetTaskLogsReq | PlainMessage<GetTaskLogsReq> | undefined, b: GetTaskLogsReq | PlainMessage<GetTaskLogsReq> | undefined): boolean;
|
|
59
|
+
}
|
|
60
|
+
export declare class GetTaskLogsRes extends Message<GetTaskLogsRes> {
|
|
61
|
+
ticketId: string;
|
|
62
|
+
constructor(data?: PartialMessage<GetTaskLogsRes>);
|
|
63
|
+
static readonly runtime: typeof proto3;
|
|
64
|
+
static readonly typeName = "sppb.GetTaskLogsRes";
|
|
65
|
+
static readonly fields: FieldList;
|
|
66
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetTaskLogsRes;
|
|
67
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetTaskLogsRes;
|
|
68
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetTaskLogsRes;
|
|
69
|
+
static equals(a: GetTaskLogsRes | PlainMessage<GetTaskLogsRes> | undefined, b: GetTaskLogsRes | PlainMessage<GetTaskLogsRes> | undefined): boolean;
|
|
70
|
+
}
|
|
71
|
+
export declare class GetTaskStatusReq extends Message<GetTaskStatusReq> {
|
|
72
|
+
ticketId: string;
|
|
73
|
+
constructor(data?: PartialMessage<GetTaskStatusReq>);
|
|
74
|
+
static readonly runtime: typeof proto3;
|
|
75
|
+
static readonly typeName = "sppb.GetTaskStatusReq";
|
|
76
|
+
static readonly fields: FieldList;
|
|
77
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetTaskStatusReq;
|
|
78
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetTaskStatusReq;
|
|
79
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetTaskStatusReq;
|
|
80
|
+
static equals(a: GetTaskStatusReq | PlainMessage<GetTaskStatusReq> | undefined, b: GetTaskStatusReq | PlainMessage<GetTaskStatusReq> | undefined): boolean;
|
|
81
|
+
}
|
|
82
|
+
export declare class GetTaskResultRes extends Message<GetTaskResultRes> {
|
|
83
|
+
resultCode: string;
|
|
84
|
+
resultError: string;
|
|
85
|
+
resultData: string;
|
|
86
|
+
constructor(data?: PartialMessage<GetTaskResultRes>);
|
|
87
|
+
static readonly runtime: typeof proto3;
|
|
88
|
+
static readonly typeName = "sppb.GetTaskResultRes";
|
|
89
|
+
static readonly fields: FieldList;
|
|
90
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetTaskResultRes;
|
|
91
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetTaskResultRes;
|
|
92
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetTaskResultRes;
|
|
93
|
+
static equals(a: GetTaskResultRes | PlainMessage<GetTaskResultRes> | undefined, b: GetTaskResultRes | PlainMessage<GetTaskResultRes> | undefined): boolean;
|
|
94
|
+
}
|
|
95
|
+
export declare class GetTaskResultReq extends Message<GetTaskResultReq> {
|
|
96
|
+
ticketId: string;
|
|
97
|
+
constructor(data?: PartialMessage<GetTaskResultReq>);
|
|
98
|
+
static readonly runtime: typeof proto3;
|
|
99
|
+
static readonly typeName = "sppb.GetTaskResultReq";
|
|
100
|
+
static readonly fields: FieldList;
|
|
101
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetTaskResultReq;
|
|
102
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetTaskResultReq;
|
|
103
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetTaskResultReq;
|
|
104
|
+
static equals(a: GetTaskResultReq | PlainMessage<GetTaskResultReq> | undefined, b: GetTaskResultReq | PlainMessage<GetTaskResultReq> | undefined): boolean;
|
|
105
|
+
}
|
|
106
|
+
export declare class TaskHelloReq extends Message<TaskHelloReq> {
|
|
107
|
+
taskCallOptions?: TaskCallOptions;
|
|
108
|
+
name: string;
|
|
109
|
+
constructor(data?: PartialMessage<TaskHelloReq>);
|
|
110
|
+
static readonly runtime: typeof proto3;
|
|
111
|
+
static readonly typeName = "sppb.TaskHelloReq";
|
|
112
|
+
static readonly fields: FieldList;
|
|
113
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TaskHelloReq;
|
|
114
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TaskHelloReq;
|
|
115
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TaskHelloReq;
|
|
116
|
+
static equals(a: TaskHelloReq | PlainMessage<TaskHelloReq> | undefined, b: TaskHelloReq | PlainMessage<TaskHelloReq> | undefined): boolean;
|
|
117
|
+
}
|
|
13
118
|
export declare class JobRunReq extends Message<JobRunReq> {
|
|
14
119
|
name: string;
|
|
15
120
|
constructor(data?: PartialMessage<JobRunReq>);
|
|
@@ -536,17 +641,6 @@ export declare class ConsumMessageRes extends Message<ConsumMessageRes> {
|
|
|
536
641
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ConsumMessageRes;
|
|
537
642
|
static equals(a: ConsumMessageRes | PlainMessage<ConsumMessageRes> | undefined, b: ConsumMessageRes | PlainMessage<ConsumMessageRes> | undefined): boolean;
|
|
538
643
|
}
|
|
539
|
-
export declare class HelloBotMessage extends Message<HelloBotMessage> {
|
|
540
|
-
name: string;
|
|
541
|
-
constructor(data?: PartialMessage<HelloBotMessage>);
|
|
542
|
-
static readonly runtime: typeof proto3;
|
|
543
|
-
static readonly typeName = "sppb.HelloBotMessage";
|
|
544
|
-
static readonly fields: FieldList;
|
|
545
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HelloBotMessage;
|
|
546
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): HelloBotMessage;
|
|
547
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): HelloBotMessage;
|
|
548
|
-
static equals(a: HelloBotMessage | PlainMessage<HelloBotMessage> | undefined, b: HelloBotMessage | PlainMessage<HelloBotMessage> | undefined): boolean;
|
|
549
|
-
}
|
|
550
644
|
export declare class CxPageReq extends Message<CxPageReq> {
|
|
551
645
|
url: string;
|
|
552
646
|
constructor(data?: PartialMessage<CxPageReq>);
|