📝 docs(tsl): sync api skill with corrected codegen

Mirror docs/tsl/codegen into the bundled tsl-api-reference skill and rebuild the function index.

Remove invalid duplicate API entries for cb_delistedbydate, createhttpsession, exportJsonString, and Anova_Bartlett so exact lookup returns the canonical entries.
This commit is contained in:
csh
2026-07-07 16:47:03 +08:00
parent bbf6977f57
commit c0bf0358e0
278 changed files with 45212 additions and 35782 deletions
@@ -1,6 +1,6 @@
# 算法交易 / 算法交易服务器支撑事件函数
### `addEvent(msg_type, msg_identy, code, id_list, user_id)`
## `addEvent(msg_type, msg_identy, code, id_list, user_id)`
订购消息。
@@ -14,7 +14,7 @@
返回:any
### `getGlobalData(name)`
## `getGlobalData(name)`
取全局数据。
@@ -24,19 +24,19 @@
返回:any
### `listEvents()`
## `listEvents()`
获得当前设置的事件信息表。
返回:array
### `listGlobalData()`
## `listGlobalData()`
获得当前的全局数据信息列表。
返回:array
### `removeEvent(msg_identy)`
## `removeEvent(msg_identy)`
取消消息钩子。
@@ -46,7 +46,7 @@
返回:any
### `removeGlobalData(name)`
## `removeGlobalData(name)`
删除全局数据。
@@ -56,7 +56,7 @@
返回:bool
### `scheduleEvent(call_out_time, identy, code, user_id)`
## `scheduleEvent(call_out_time, identy, code, user_id)`
调度事件。 备注:TimerEvent与ScheduleEvent的差异的ScheduleEvent只做一次,做完会自动取消,而TimerEvent则会不断间隔做。
@@ -69,7 +69,7 @@
返回:any
### `sendEvent(msg_type, id_list, value)`
## `sendEvent(msg_type, id_list, value)`
给消息队列发送事件,如果成功则返回真。
@@ -81,7 +81,7 @@
返回:bool
### `setGlobalData(name, value)`
## `setGlobalData(name, value)`
设置全局数据。
@@ -92,7 +92,7 @@
返回:array
### `timerEvent(call_out_time, identy, code, user_id)`
## `timerEvent(call_out_time, identy, code, user_id)`
定时器事件。 备注:TimerEvent与ScheduleEvent的差异的ScheduleEvent只做一次,做完会自动取消,而TimerEvent则会不断间隔做。