clickgo 6.4.1 → 6.4.2
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/app/demo.cga +0 -0
- package/dist/app/task.cga +0 -0
- package/dist/index.js +1 -1
- package/dist/lib/task.d.ts +9 -2
- package/doc/clickgo-rag.md +126 -94
- package/package.json +1 -1
package/dist/lib/task.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare function getRuntime(current: lCore.TCurrent, taskId: string): IRu
|
|
|
15
15
|
/** --- 获取原始 list --- */
|
|
16
16
|
export declare function getOriginList(current: lCore.TCurrent): Promise<Record<string, ITask>>;
|
|
17
17
|
/**
|
|
18
|
-
* ---
|
|
18
|
+
* --- 获取任务及其应用包简略信息 ---
|
|
19
19
|
* @param taskId 任务 id
|
|
20
20
|
*/
|
|
21
21
|
export declare function get(taskId: lCore.TCurrent): ITaskInfo | null;
|
|
@@ -272,11 +272,18 @@ export interface ICreateTimerOptions {
|
|
|
272
272
|
'immediate'?: boolean;
|
|
273
273
|
'count'?: number;
|
|
274
274
|
}
|
|
275
|
-
/** --- Task
|
|
275
|
+
/** --- Task 及其应用包的简略信息,通常在 list 当中 --- */
|
|
276
276
|
export interface ITaskInfo {
|
|
277
277
|
/** --- 任务 ID --- */
|
|
278
278
|
'id': string;
|
|
279
|
+
/** --- 应用名 --- */
|
|
279
280
|
'name': string;
|
|
281
|
+
/** --- 发行版本 --- */
|
|
282
|
+
'ver': number;
|
|
283
|
+
/** --- 发行版本字符串 --- */
|
|
284
|
+
'version': string;
|
|
285
|
+
/** --- 作者 --- */
|
|
286
|
+
'author': string;
|
|
280
287
|
'locale': string;
|
|
281
288
|
'customTheme': boolean;
|
|
282
289
|
'formCount': number;
|