diff --git a/scripts/src/public-api-methods.ts b/scripts/src/public-api-methods.ts index fe14a05..9eaa5f9 100644 --- a/scripts/src/public-api-methods.ts +++ b/scripts/src/public-api-methods.ts @@ -126,6 +126,7 @@ export const getPublicAPIMethods = () => { "conversations.close", "conversations.create", "conversations.declineSharedInvite", + "conversations.externalInvitePermissions.set", "conversations.history", "conversations.info", "conversations.invite", @@ -198,6 +199,7 @@ export const getPublicAPIMethods = () => { "stars.remove", "team.accessLogs", "team.billableInfo", + "team.externalTeams.disconnect", "team.externalTeams.list", "team.info", "team.integrationLogs", diff --git a/src/generated/method-types/api_method_types_test.ts b/src/generated/method-types/api_method_types_test.ts index 220ccef..cc07d14 100644 --- a/src/generated/method-types/api_method_types_test.ts +++ b/src/generated/method-types/api_method_types_test.ts @@ -161,6 +161,10 @@ Deno.test("SlackAPIMethodsType generated types", () => { assertEquals(typeof client.conversations.close, "function"); assertEquals(typeof client.conversations.create, "function"); assertEquals(typeof client.conversations.declineSharedInvite, "function"); + assertEquals( + typeof client.conversations.externalInvitePermissions.set, + "function", + ); assertEquals(typeof client.conversations.history, "function"); assertEquals(typeof client.conversations.info, "function"); assertEquals(typeof client.conversations.invite, "function"); @@ -232,6 +236,7 @@ Deno.test("SlackAPIMethodsType generated types", () => { assertEquals(typeof client.team.accessLogs, "function"); assertEquals(typeof client.team.billableInfo, "function"); assertEquals(typeof client.team.billing.info, "function"); + assertEquals(typeof client.team.externalTeams.disconnect, "function"); assertEquals(typeof client.team.externalTeams.list, "function"); assertEquals(typeof client.team.info, "function"); assertEquals(typeof client.team.integrationLogs, "function"); diff --git a/src/generated/method-types/conversations.ts b/src/generated/method-types/conversations.ts index 9b56891..a9e23e7 100644 --- a/src/generated/method-types/conversations.ts +++ b/src/generated/method-types/conversations.ts @@ -13,6 +13,9 @@ export type ConversationsAPIType = { close: SlackAPIMethod; create: SlackAPIMethod; declineSharedInvite: SlackAPIMethod; + externalInvitePermissions: { + set: SlackAPIMethod; + }; history: SlackAPICursorPaginatedMethod; info: SlackAPIMethod; invite: SlackAPIMethod; diff --git a/src/generated/method-types/team.ts b/src/generated/method-types/team.ts index c25f6d7..4a50709 100644 --- a/src/generated/method-types/team.ts +++ b/src/generated/method-types/team.ts @@ -10,6 +10,7 @@ export type TeamAPIType = { info: SlackAPIMethod; }; externalTeams: { + disconnect: SlackAPIMethod; list: SlackAPICursorPaginatedMethod; }; info: SlackAPIMethod;