@@ -43,7 +43,7 @@ elimination.
4343 {
4444 " name" : " @gwigz/slua-tstl-plugin" ,
4545 " define" : {
46- " YIELD_DATASERVER " : true ,
46+ " YIELD_DATASERVER_AGENT " : true ,
4747 " YIELD_HTTP" : true ,
4848 // omitted flags default to false, code is stripped
4949 },
@@ -63,19 +63,19 @@ export type API = {
6363 waitFor: typeof waitFor,
6464 /** Yield the current coroutine for `seconds` seconds. */
6565 sleep: typeof sleep,
66- /** Request agent data and yield until the result arrives. @remarks `YIELD_DATASERVER ` */
66+ /** Request agent data and yield until the result arrives. @remarks `YIELD_DATASERVER_AGENT ` */
6767 requestAgentData: typeof requestAgentData,
68- /** Request a display name and yield until the result arrives. @remarks `YIELD_DATASERVER ` */
68+ /** Request a display name and yield until the result arrives. @remarks `YIELD_DATASERVER_DISPLAY_NAME ` */
6969 requestDisplayName: typeof requestDisplayName,
70- /** Request simulator data and yield until the result arrives. @remarks `YIELD_DATASERVER ` */
70+ /** Request simulator data and yield until the result arrives. @remarks `YIELD_DATASERVER_SIM ` */
7171 requestSimulatorData: typeof requestSimulatorData,
72- /** Request inventory data and yield until the result arrives. @remarks `YIELD_DATASERVER ` */
72+ /** Request inventory data and yield until the result arrives. @remarks `YIELD_DATASERVER_INVENTORY ` */
7373 requestInventoryData: typeof requestInventoryData,
74- /** Read a single notecard line and yield until the result arrives. @remarks `YIELD_DATASERVER ` */
74+ /** Read a single notecard line and yield until the result arrives. @remarks `YIELD_DATASERVER_NOTECARD ` */
7575 readNotecardLine: typeof readNotecardLine,
76- /** Read an entire notecard by fetching lines until EOF. Returns an array of lines. @remarks `YIELD_DATASERVER ` */
76+ /** Read an entire notecard by fetching lines until EOF. Returns an array of lines. @remarks `YIELD_DATASERVER_NOTECARD ` */
7777 readNotecard: typeof readNotecard,
78- /** Search notecard text for a pattern and yield until the count arrives. @remarks `YIELD_DATASERVER ` */
78+ /** Search notecard text for a pattern and yield until the count arrives. @remarks `YIELD_DATASERVER_TEXT_COUNT ` */
7979 findNotecardTextCount: typeof findNotecardTextCount,
8080 /** Read a key-value pair from the experience KV store. @remarks `YIELD_KV` */
8181 kvRead: typeof kvRead,
0 commit comments