@@ -250,6 +250,10 @@ import type {
250250 ViewsPublishArguments ,
251251 ViewsPushArguments ,
252252 ViewsUpdateArguments ,
253+ WorkflowsFeaturedAddArguments ,
254+ WorkflowsFeaturedListArguments ,
255+ WorkflowsFeaturedRemoveArguments ,
256+ WorkflowsFeaturedSetArguments ,
253257 WorkflowsStepCompletedArguments ,
254258 WorkflowsStepFailedArguments ,
255259 WorkflowsUpdateStepArguments ,
@@ -503,6 +507,10 @@ import type {
503507 ViewsPublishResponse ,
504508 ViewsPushResponse ,
505509 ViewsUpdateResponse ,
510+ WorkflowsFeaturedAddResponse ,
511+ WorkflowsFeaturedListResponse ,
512+ WorkflowsFeaturedRemoveResponse ,
513+ WorkflowsFeaturedSetResponse ,
506514 WorkflowsStepCompletedResponse ,
507515 WorkflowsStepFailedResponse ,
508516 WorkflowsUpdateStepResponse ,
@@ -2380,6 +2388,31 @@ export abstract class Methods extends EventEmitter<WebClientEvent> {
23802388 } ;
23812389
23822390 public readonly workflows = {
2391+ featured : {
2392+ /**
2393+ * @description Add featured workflows to a channel.
2394+ * @see {@link https://docs.slack.dev/reference/methods/workflows.featured.add `workflows.featured.add` API reference }.
2395+ */
2396+ add : bindApiCall < WorkflowsFeaturedAddArguments , WorkflowsFeaturedAddResponse > ( this , 'workflows.featured.add' ) ,
2397+ /**
2398+ * @description List the featured workflows for specified channels.
2399+ * @see {@link https://docs.slack.dev/reference/methods/workflows.featured.list `workflows.featured.list` API reference }.
2400+ */
2401+ list : bindApiCall < WorkflowsFeaturedListArguments , WorkflowsFeaturedListResponse > ( this , 'workflows.featured.list' ) ,
2402+ /**
2403+ * @description Remove featured workflows from a channel.
2404+ * @see {@link https://docs.slack.dev/reference/methods/workflows.featured.remove `workflows.featured.remove` API reference }.
2405+ */
2406+ remove : bindApiCall < WorkflowsFeaturedRemoveArguments , WorkflowsFeaturedRemoveResponse > (
2407+ this ,
2408+ 'workflows.featured.remove' ,
2409+ ) ,
2410+ /**
2411+ * @description Set featured workflows for a channel.
2412+ * @see {@link https://docs.slack.dev/reference/methods/workflows.featured.set `workflows.featured.set` API reference }.
2413+ */
2414+ set : bindApiCall < WorkflowsFeaturedSetArguments , WorkflowsFeaturedSetResponse > ( this , 'workflows.featured.set' ) ,
2415+ } ,
23832416 /**
23842417 * @description Indicate that an app's step in a workflow completed execution.
23852418 * @deprecated Steps from Apps is deprecated.
0 commit comments