@@ -108,6 +108,9 @@ import type {
108108 AppsManifestUpdateArguments ,
109109 AppsManifestValidateArguments ,
110110 AppsUninstallArguments ,
111+ AssistantThreadsSetStatusArguments ,
112+ AssistantThreadsSetSuggestedPromptsArguments ,
113+ AssistantThreadsSetTitleArguments ,
111114 AuthRevokeArguments ,
112115 AuthTeamsListArguments ,
113116 AuthTestArguments ,
@@ -357,6 +360,9 @@ import type {
357360 AppsManifestUpdateResponse ,
358361 AppsManifestValidateResponse ,
359362 AppsUninstallResponse ,
363+ AssistantThreadsSetStatusResponse ,
364+ AssistantThreadsSetSuggestedPromptsResponse ,
365+ AssistantThreadsSetTitleResponse ,
360366 AuthRevokeResponse ,
361367 AuthTeamsListResponse ,
362368 AuthTestResponse ,
@@ -1332,6 +1338,35 @@ export abstract class Methods extends EventEmitter<WebClientEvent> {
13321338 test : bindApiCallWithOptionalArgument < APITestArguments , ApiTestResponse > ( this , 'api.test' ) ,
13331339 } ;
13341340
1341+ public readonly assistant = {
1342+ threads : {
1343+ /**
1344+ * @description Set loading status to indicate that the app is building a response.
1345+ * @see {@link https://api.slack.com/methods/assistant.threads.setStatus `assistant.threads.setStatus` API reference }.
1346+ */
1347+ setStatus : bindApiCall < AssistantThreadsSetStatusArguments , AssistantThreadsSetStatusResponse > (
1348+ this ,
1349+ 'assistant.threads.setStatus' ,
1350+ ) ,
1351+ /**
1352+ * @description Set suggested prompts for the user. Can suggest up to four prompts.
1353+ * @see {@link https://api.slack.com/methods/assistant.threads.setSuggestedPrompts `assistant.threads.setSuggestedPrompts` API reference }.
1354+ */
1355+ setSuggestedPrompts : bindApiCall <
1356+ AssistantThreadsSetSuggestedPromptsArguments ,
1357+ AssistantThreadsSetSuggestedPromptsResponse
1358+ > ( this , 'assistant.threads.setSuggestedPrompts' ) ,
1359+ /**
1360+ * @description Set the title of the thread. This is shown when a user views the app's chat history.
1361+ * @see {@link https://api.slack.com/methods/assistant.threads.setTitle `assistant.threads.setTitle` API reference }.
1362+ */
1363+ setTitle : bindApiCall < AssistantThreadsSetTitleArguments , AssistantThreadsSetTitleResponse > (
1364+ this ,
1365+ 'assistant.threads.setTitle' ,
1366+ ) ,
1367+ } ,
1368+ } ;
1369+
13351370 public readonly apps = {
13361371 connections : {
13371372 /**
0 commit comments