diff --git a/src_deno/app.ts b/src_deno/app.ts index 77a4ac4..aeb818f 100644 --- a/src_deno/app.ts +++ b/src_deno/app.ts @@ -44,7 +44,7 @@ import { import { ResponseUrlSender, SlackAPIClient, -} from "https://deno.land/x/slack_web_api_client@0.8.2/mod.ts"; +} from "https://deno.land/x/slack_web_api_client@0.9.2/mod.ts"; import { builtBaseContext, SlackAppContext, @@ -55,7 +55,7 @@ import { Middleware, PreAuthorizeMiddleware } from "./middleware/middleware.ts"; import { isDebugLogEnabled, prettyPrint, -} from "https://deno.land/x/slack_web_api_client@0.8.2/mod.ts"; +} from "https://deno.land/x/slack_web_api_client@0.9.2/mod.ts"; import { Authorize } from "./authorization/authorize.ts"; import { AuthorizeResult } from "./authorization/authorize-result.ts"; import { diff --git a/src_deno/authorization/single-team-authorize.ts b/src_deno/authorization/single-team-authorize.ts index 8234eee..e96f89d 100644 --- a/src_deno/authorization/single-team-authorize.ts +++ b/src_deno/authorization/single-team-authorize.ts @@ -3,7 +3,7 @@ import { AuthTestResponse, SlackAPIClient, SlackAPIError, -} from "https://deno.land/x/slack_web_api_client@0.8.2/mod.ts"; +} from "https://deno.land/x/slack_web_api_client@0.9.2/mod.ts"; import { Authorize } from "./authorize.ts"; export const singleTeamAuthorize: Authorize = async (req) => { diff --git a/src_deno/context/context.ts b/src_deno/context/context.ts index 4bd5c1f..4bad176 100644 --- a/src_deno/context/context.ts +++ b/src_deno/context/context.ts @@ -4,7 +4,7 @@ import { ChatPostMessageResponse, SlackAPIClient, WebhookParams, -} from "https://deno.land/x/slack_web_api_client@0.8.2/mod.ts"; +} from "https://deno.land/x/slack_web_api_client@0.9.2/mod.ts"; export interface PreAuthorizeSlackAppContext { isEnterpriseinstall?: boolean; diff --git a/src_deno/index.ts b/src_deno/index.ts index caa0452..37b91c9 100644 --- a/src_deno/index.ts +++ b/src_deno/index.ts @@ -2,7 +2,7 @@ export * from "./app.ts"; export * from "./app-env.ts"; export * from "./execution-context.ts"; -export * from "https://deno.land/x/slack_web_api_client@0.8.2/mod.ts"; +export * from "https://deno.land/x/slack_web_api_client@0.9.2/mod.ts"; export * from "./errors.ts"; export * from "./oauth/error-codes.ts"; diff --git a/src_deno/oauth-app.ts b/src_deno/oauth-app.ts index 09c9e9d..7973341 100644 --- a/src_deno/oauth-app.ts +++ b/src_deno/oauth-app.ts @@ -9,7 +9,7 @@ import { OAuthV2AccessResponse, OpenIDConnectTokenResponse, SlackAPIClient, -} from "https://deno.land/x/slack_web_api_client@0.8.2/mod.ts"; +} from "https://deno.land/x/slack_web_api_client@0.9.2/mod.ts"; import { toInstallation } from "./oauth/installation.ts"; import { AfterInstallation, diff --git a/src_deno/oauth/callback.ts b/src_deno/oauth/callback.ts index 01161ed..02321f3 100644 --- a/src_deno/oauth/callback.ts +++ b/src_deno/oauth/callback.ts @@ -1,4 +1,4 @@ -import { OAuthV2AccessResponse } from "https://deno.land/x/slack_web_api_client@0.8.2/mod.ts"; +import { OAuthV2AccessResponse } from "https://deno.land/x/slack_web_api_client@0.9.2/mod.ts"; import { InvalidStateParameter, OAuthErrorCode } from "./error-codes.ts"; import { Installation } from "./installation.ts"; import { diff --git a/src_deno/oauth/installation.ts b/src_deno/oauth/installation.ts index 2ec740e..8adf583 100644 --- a/src_deno/oauth/installation.ts +++ b/src_deno/oauth/installation.ts @@ -1,4 +1,4 @@ -import { OAuthV2AccessResponse } from "https://deno.land/x/slack_web_api_client@0.8.2/mod.ts"; +import { OAuthV2AccessResponse } from "https://deno.land/x/slack_web_api_client@0.9.2/mod.ts"; export interface Installation { app_id: string; diff --git a/src_deno/oidc/callback.ts b/src_deno/oidc/callback.ts index 9274f3a..2684d4f 100644 --- a/src_deno/oidc/callback.ts +++ b/src_deno/oidc/callback.ts @@ -2,8 +2,8 @@ import { SlackLoggingLevel } from "../app-env.ts"; import { OpenIDConnectTokenResponse, SlackAPIClient, -} from "https://deno.land/x/slack_web_api_client@0.8.2/mod.ts"; -import { prettyPrint } from "https://deno.land/x/slack_web_api_client@0.8.2/mod.ts"; +} from "https://deno.land/x/slack_web_api_client@0.9.2/mod.ts"; +import { prettyPrint } from "https://deno.land/x/slack_web_api_client@0.9.2/mod.ts"; export interface OpenIDConnectCallbackArgs { env: SlackLoggingLevel; diff --git a/src_deno/oidc/login.ts b/src_deno/oidc/login.ts index f49fdf4..037be6c 100644 --- a/src_deno/oidc/login.ts +++ b/src_deno/oidc/login.ts @@ -1,7 +1,7 @@ import { OpenIDConnectTokenResponse, OpenIDConnectUserInfoResponse, -} from "https://deno.land/x/slack_web_api_client@0.8.2/mod.ts"; +} from "https://deno.land/x/slack_web_api_client@0.9.2/mod.ts"; export interface Login { enterprise_id?: string; diff --git a/src_deno/request/payload/block-action.ts b/src_deno/request/payload/block-action.ts index c2a0483..f59c488 100644 --- a/src_deno/request/payload/block-action.ts +++ b/src_deno/request/payload/block-action.ts @@ -5,7 +5,7 @@ import { MessageAttachment, MessageMetadata, PlainTextField, -} from "https://deno.land/x/slack_web_api_client@0.8.2/mod.ts"; +} from "https://deno.land/x/slack_web_api_client@0.9.2/mod.ts"; import { DataSubmissionView, ViewStateValue } from "./view-objects.ts"; import { BotProfile } from "./event.ts"; diff --git a/src_deno/request/payload/block-suggestion.ts b/src_deno/request/payload/block-suggestion.ts index 3f33141..6737cf5 100644 --- a/src_deno/request/payload/block-suggestion.ts +++ b/src_deno/request/payload/block-suggestion.ts @@ -1,4 +1,4 @@ -import { AnyOption } from "https://deno.land/x/slack_web_api_client@0.8.2/mod.ts"; +import { AnyOption } from "https://deno.land/x/slack_web_api_client@0.9.2/mod.ts"; import { DataSubmissionView } from "./view-objects.ts"; export interface BlockSuggestion { diff --git a/src_deno/request/payload/event.ts b/src_deno/request/payload/event.ts index 1795d6d..88d9d3a 100644 --- a/src_deno/request/payload/event.ts +++ b/src_deno/request/payload/event.ts @@ -3,7 +3,7 @@ import { HomeTabView, MessageAttachment, MessageMetadata, -} from "https://deno.land/x/slack_web_api_client@0.8.2/mod.ts"; +} from "https://deno.land/x/slack_web_api_client@0.9.2/mod.ts"; export type AnySlackEvent = | AppRequestedEvent diff --git a/src_deno/request/payload/view-objects.ts b/src_deno/request/payload/view-objects.ts index b962145..c3c2bcf 100644 --- a/src_deno/request/payload/view-objects.ts +++ b/src_deno/request/payload/view-objects.ts @@ -3,7 +3,7 @@ import { AnyModalBlock, PlainTextField, RichTextBlock, -} from "https://deno.land/x/slack_web_api_client@0.8.2/mod.ts"; +} from "https://deno.land/x/slack_web_api_client@0.9.2/mod.ts"; export interface ViewStateSelectedOption { text: PlainTextField; diff --git a/src_deno/response/response-body.ts b/src_deno/response/response-body.ts index 992d9d7..37a1ca2 100644 --- a/src_deno/response/response-body.ts +++ b/src_deno/response/response-body.ts @@ -4,7 +4,7 @@ import { MessageAttachment, MessageMetadata, ModalView, -} from "https://deno.land/x/slack_web_api_client@0.8.2/mod.ts"; +} from "https://deno.land/x/slack_web_api_client@0.9.2/mod.ts"; export interface MessageResponse { response_type?: "ephemeral" | "in_channel"; diff --git a/src_deno/socket-mode/socket-mode-client.ts b/src_deno/socket-mode/socket-mode-client.ts index 146a63c..b88ba2b 100644 --- a/src_deno/socket-mode/socket-mode-client.ts +++ b/src_deno/socket-mode/socket-mode-client.ts @@ -1,7 +1,7 @@ import { isDebugLogEnabled, SlackAPIClient, -} from "https://deno.land/x/slack_web_api_client@0.8.2/mod.ts"; +} from "https://deno.land/x/slack_web_api_client@0.9.2/mod.ts"; import { SlackApp } from "../app.ts"; import { ConfigError, SocketModeError } from "../errors.ts"; import { SlackSocketModeAppEnv } from "../app-env.ts";