Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion datastores/sample_datastore.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DefineDatastore, Schema } from "deno-slack-sdk/mod.ts";
import { DefineDatastore, Schema } from "@slack/sdk";

/**
* Datastores are a Slack-hosted location to store
Expand Down
6 changes: 3 additions & 3 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
"test": "deno fmt --check && deno lint && deno test --allow-read"
},
"imports": {
"@slack/api": "jsr:@slack/api@2.9.0",
"@slack/sdk": "jsr:@slack/sdk@2.15.2",
"@std/assert": "jsr:@std/assert@^1.0.15",
"@std/testing": "jsr:@std/testing@^1.0.16",
"deno-slack-sdk/": "https://deno.land/x/deno_slack_sdk@2.15.1/",
"deno-slack-api/": "https://deno.land/x/deno_slack_api@2.8.0/"
"@std/testing": "jsr:@std/testing@^1.0.16"
}
}
2 changes: 1 addition & 1 deletion functions/sample_function.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DefineFunction, Schema, SlackFunction } from "deno-slack-sdk/mod.ts";
import { DefineFunction, Schema, SlackFunction } from "@slack/sdk";
import type SampleObjectDatastore from "../datastores/sample_datastore.ts";

/**
Expand Down
2 changes: 1 addition & 1 deletion functions/sample_function_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlackFunctionTester } from "deno-slack-sdk/mod.ts";
import { SlackFunctionTester } from "@slack/sdk";
import { assertEquals, assertExists, assertStringIncludes } from "@std/assert";
import { stub } from "@std/testing/mock";
import SampleFunction from "./sample_function.ts";
Expand Down
2 changes: 1 addition & 1 deletion manifest.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Manifest } from "deno-slack-sdk/mod.ts";
import { Manifest } from "@slack/sdk";
import SampleWorkflow from "./workflows/sample_workflow.ts";
import SampleObjectDatastore from "./datastores/sample_datastore.ts";

Expand Down
4 changes: 2 additions & 2 deletions triggers/sample_trigger.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Trigger } from "deno-slack-sdk/types.ts";
import { TriggerContextData, TriggerTypes } from "deno-slack-api/mod.ts";
import type { Trigger } from "@slack/sdk/types.ts";
import { TriggerContextData, TriggerTypes } from "@slack/api";
import SampleWorkflow from "../workflows/sample_workflow.ts";
/**
* Triggers determine when workflows are executed. A trigger
Expand Down
2 changes: 1 addition & 1 deletion workflows/sample_workflow.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DefineWorkflow, Schema } from "deno-slack-sdk/mod.ts";
import { DefineWorkflow, Schema } from "@slack/sdk";
import { SampleFunctionDefinition } from "../functions/sample_function.ts";

/**
Expand Down