@@ -3223,6 +3223,26 @@ public StarsRemoveResponse starsRemove(RequestConfigurator<StarsRemoveRequest.St
32233223 return starsRemove (req .configure (StarsRemoveRequest .builder ()).build ());
32243224 }
32253225
3226+ @ Override
3227+ public SlackListsAccessDeleteResponse slackListsAccessDelete (SlackListsAccessDeleteRequest req ) throws IOException , SlackApiException {
3228+ return postFormWithTokenAndParseResponse (toForm (req ), Methods .SLACKLISTS_ACCESS_DELETE , getToken (req ), SlackListsAccessDeleteResponse .class );
3229+ }
3230+
3231+ @ Override
3232+ public SlackListsAccessDeleteResponse slackListsAccessDelete (RequestConfigurator <SlackListsAccessDeleteRequest .SlackListsAccessDeleteRequestBuilder > req ) throws IOException , SlackApiException {
3233+ return slackListsAccessDelete (req .configure (SlackListsAccessDeleteRequest .builder ()).build ());
3234+ }
3235+
3236+ @ Override
3237+ public SlackListsAccessSetResponse slackListsAccessSet (SlackListsAccessSetRequest req ) throws IOException , SlackApiException {
3238+ return postFormWithTokenAndParseResponse (toForm (req ), Methods .SLACKLISTS_ACCESS_SET , getToken (req ), SlackListsAccessSetResponse .class );
3239+ }
3240+
3241+ @ Override
3242+ public SlackListsAccessSetResponse slackListsAccessSet (RequestConfigurator <SlackListsAccessSetRequest .SlackListsAccessSetRequestBuilder > req ) throws IOException , SlackApiException {
3243+ return slackListsAccessSet (req .configure (SlackListsAccessSetRequest .builder ()).build ());
3244+ }
3245+
32263246 @ Override
32273247 public SlackListsCreateResponse slackListsCreate (SlackListsCreateRequest req ) throws IOException , SlackApiException {
32283248 return postFormWithTokenAndParseResponse (toForm (req ), Methods .SLACKLISTS_CREATE , getToken (req ), SlackListsCreateResponse .class );
@@ -3233,6 +3253,96 @@ public SlackListsCreateResponse slackListsCreate(RequestConfigurator<SlackListsC
32333253 return slackListsCreate (req .configure (SlackListsCreateRequest .builder ()).build ());
32343254 }
32353255
3256+ @ Override
3257+ public SlackListsDownloadGetResponse slackListsDownloadGet (SlackListsDownloadGetRequest req ) throws IOException , SlackApiException {
3258+ return postFormWithTokenAndParseResponse (toForm (req ), Methods .SLACKLISTS_DOWNLOAD_GET , getToken (req ), SlackListsDownloadGetResponse .class );
3259+ }
3260+
3261+ @ Override
3262+ public SlackListsDownloadGetResponse slackListsDownloadGet (RequestConfigurator <SlackListsDownloadGetRequest .SlackListsDownloadGetRequestBuilder > req ) throws IOException , SlackApiException {
3263+ return slackListsDownloadGet (req .configure (SlackListsDownloadGetRequest .builder ()).build ());
3264+ }
3265+
3266+ @ Override
3267+ public SlackListsDownloadStartResponse slackListsDownloadStart (SlackListsDownloadStartRequest req ) throws IOException , SlackApiException {
3268+ return postFormWithTokenAndParseResponse (toForm (req ), Methods .SLACKLISTS_DOWNLOAD_START , getToken (req ), SlackListsDownloadStartResponse .class );
3269+ }
3270+
3271+ @ Override
3272+ public SlackListsDownloadStartResponse slackListsDownloadStart (RequestConfigurator <SlackListsDownloadStartRequest .SlackListsDownloadStartRequestBuilder > req ) throws IOException , SlackApiException {
3273+ return slackListsDownloadStart (req .configure (SlackListsDownloadStartRequest .builder ()).build ());
3274+ }
3275+
3276+ @ Override
3277+ public SlackListsItemsCreateResponse slackListsItemsCreate (SlackListsItemsCreateRequest req ) throws IOException , SlackApiException {
3278+ return postFormWithTokenAndParseResponse (toForm (req ), Methods .SLACKLISTS_ITEMS_CREATE , getToken (req ), SlackListsItemsCreateResponse .class );
3279+ }
3280+
3281+ @ Override
3282+ public SlackListsItemsCreateResponse slackListsItemsCreate (RequestConfigurator <SlackListsItemsCreateRequest .SlackListsItemsCreateRequestBuilder > req ) throws IOException , SlackApiException {
3283+ return slackListsItemsCreate (req .configure (SlackListsItemsCreateRequest .builder ()).build ());
3284+ }
3285+
3286+ @ Override
3287+ public SlackListsItemsDeleteResponse slackListsItemsDelete (SlackListsItemsDeleteRequest req ) throws IOException , SlackApiException {
3288+ return postFormWithTokenAndParseResponse (toForm (req ), Methods .SLACKLISTS_ITEMS_DELETE , getToken (req ), SlackListsItemsDeleteResponse .class );
3289+ }
3290+
3291+ @ Override
3292+ public SlackListsItemsDeleteResponse slackListsItemsDelete (RequestConfigurator <SlackListsItemsDeleteRequest .SlackListsItemsDeleteRequestBuilder > req ) throws IOException , SlackApiException {
3293+ return slackListsItemsDelete (req .configure (SlackListsItemsDeleteRequest .builder ()).build ());
3294+ }
3295+
3296+ @ Override
3297+ public SlackListsItemsDeleteMultipleResponse slackListsItemsDeleteMultiple (SlackListsItemsDeleteMultipleRequest req ) throws IOException , SlackApiException {
3298+ return postFormWithTokenAndParseResponse (toForm (req ), Methods .SLACKLISTS_ITEMS_DELETE_MULTIPLE , getToken (req ), SlackListsItemsDeleteMultipleResponse .class );
3299+ }
3300+
3301+ @ Override
3302+ public SlackListsItemsDeleteMultipleResponse slackListsItemsDeleteMultiple (RequestConfigurator <SlackListsItemsDeleteMultipleRequest .SlackListsItemsDeleteMultipleRequestBuilder > req ) throws IOException , SlackApiException {
3303+ return slackListsItemsDeleteMultiple (req .configure (SlackListsItemsDeleteMultipleRequest .builder ()).build ());
3304+ }
3305+
3306+ @ Override
3307+ public SlackListsItemsInfoResponse slackListsItemsInfo (SlackListsItemsInfoRequest req ) throws IOException , SlackApiException {
3308+ return postFormWithTokenAndParseResponse (toForm (req ), Methods .SLACKLISTS_ITEMS_INFO , getToken (req ), SlackListsItemsInfoResponse .class );
3309+ }
3310+
3311+ @ Override
3312+ public SlackListsItemsInfoResponse slackListsItemsInfo (RequestConfigurator <SlackListsItemsInfoRequest .SlackListsItemsInfoRequestBuilder > req ) throws IOException , SlackApiException {
3313+ return slackListsItemsInfo (req .configure (SlackListsItemsInfoRequest .builder ()).build ());
3314+ }
3315+
3316+ @ Override
3317+ public SlackListsItemsListResponse slackListsItemsList (SlackListsItemsListRequest req ) throws IOException , SlackApiException {
3318+ return postFormWithTokenAndParseResponse (toForm (req ), Methods .SLACKLISTS_ITEMS_LIST , getToken (req ), SlackListsItemsListResponse .class );
3319+ }
3320+
3321+ @ Override
3322+ public SlackListsItemsListResponse slackListsItemsList (RequestConfigurator <SlackListsItemsListRequest .SlackListsItemsListRequestBuilder > req ) throws IOException , SlackApiException {
3323+ return slackListsItemsList (req .configure (SlackListsItemsListRequest .builder ()).build ());
3324+ }
3325+
3326+ @ Override
3327+ public SlackListsItemsUpdateResponse slackListsItemsUpdate (SlackListsItemsUpdateRequest req ) throws IOException , SlackApiException {
3328+ return postFormWithTokenAndParseResponse (toForm (req ), Methods .SLACKLISTS_ITEMS_UPDATE , getToken (req ), SlackListsItemsUpdateResponse .class );
3329+ }
3330+
3331+ @ Override
3332+ public SlackListsItemsUpdateResponse slackListsItemsUpdate (RequestConfigurator <SlackListsItemsUpdateRequest .SlackListsItemsUpdateRequestBuilder > req ) throws IOException , SlackApiException {
3333+ return slackListsItemsUpdate (req .configure (SlackListsItemsUpdateRequest .builder ()).build ());
3334+ }
3335+
3336+ @ Override
3337+ public SlackListsUpdateResponse slackListsUpdate (SlackListsUpdateRequest req ) throws IOException , SlackApiException {
3338+ return postFormWithTokenAndParseResponse (toForm (req ), Methods .SLACKLISTS_UPDATE , getToken (req ), SlackListsUpdateResponse .class );
3339+ }
3340+
3341+ @ Override
3342+ public SlackListsUpdateResponse slackListsUpdate (RequestConfigurator <SlackListsUpdateRequest .SlackListsUpdateRequestBuilder > req ) throws IOException , SlackApiException {
3343+ return slackListsUpdate (req .configure (SlackListsUpdateRequest .builder ()).build ());
3344+ }
3345+
32363346 @ Override
32373347 public TeamAccessLogsResponse teamAccessLogs (TeamAccessLogsRequest req ) throws IOException , SlackApiException {
32383348 this .teamId .ifPresent (currentTeamId -> {
0 commit comments