nestjs-slack-webhook
Advanced tools
Comparing version 8.0.0 to 8.1.0
import { Injectable } from "@nestjs/common"; | ||
import { Test, TestingModule } from "@nestjs/testing"; | ||
import { IncomingWebhook } from "@slack/webhook"; | ||
import { InjectSlack } from "../src/injectSlack"; | ||
import { SlackModule } from "../src/slackModule"; | ||
import { InjectSlack } from "../src/injectSlack"; | ||
@@ -7,0 +7,0 @@ describe("InjectSlack", () => { |
@@ -5,4 +5,4 @@ import { Module } from "@nestjs/common"; | ||
import { SLACK_TOKEN } from "./../src/slackConstants"; | ||
import { SlackModule } from "./../src/slackModule"; | ||
import { SlackOptions, SlackOptionsFactory } from "./../src/slackOptions"; | ||
import { SlackModule } from "./../src/slackModule"; | ||
@@ -9,0 +9,0 @@ describe("slackModule", () => { |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.createSlackProvider = void 0; | ||
const getSlackClient_1 = require("./getSlackClient"); | ||
const slackConstants_1 = require("./slackConstants"); | ||
const getSlackClient_1 = require("./getSlackClient"); | ||
function createSlackProvider(options) { | ||
@@ -7,0 +7,0 @@ return { |
@@ -0,3 +1,3 @@ | ||
export * from "./injectSlack"; | ||
export * from "./slackModule"; | ||
export * from "./slackOptions"; | ||
export * from "./injectSlack"; |
@@ -13,5 +13,5 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__exportStar(require("./injectSlack"), exports); | ||
__exportStar(require("./slackModule"), exports); | ||
__exportStar(require("./slackOptions"), exports); | ||
__exportStar(require("./injectSlack"), exports); | ||
//# sourceMappingURL=index.js.map |
import { DynamicModule } from "@nestjs/common"; | ||
import { SlackOptions, SlackAsyncOptions } from "./slackOptions"; | ||
import { SlackAsyncOptions, SlackOptions } from "./slackOptions"; | ||
export declare class SlackCoreModule { | ||
@@ -4,0 +4,0 @@ static forRoot(options: SlackOptions): DynamicModule; |
@@ -12,5 +12,5 @@ "use strict"; | ||
const common_1 = require("@nestjs/common"); | ||
const createSlackProvider_1 = require("./createSlackProvider"); | ||
const getSlackClient_1 = require("./getSlackClient"); | ||
const slackConstants_1 = require("./slackConstants"); | ||
const getSlackClient_1 = require("./getSlackClient"); | ||
const createSlackProvider_1 = require("./createSlackProvider"); | ||
let SlackCoreModule = SlackCoreModule_1 = class SlackCoreModule { | ||
@@ -17,0 +17,0 @@ static forRoot(options) { |
import { DynamicModule } from "@nestjs/common"; | ||
import { SlackOptions, SlackAsyncOptions } from "./slackOptions"; | ||
import { SlackAsyncOptions, SlackOptions } from "./slackOptions"; | ||
export declare class SlackModule { | ||
@@ -4,0 +4,0 @@ static forRoot(options: SlackOptions): DynamicModule; |
{ | ||
"name": "nestjs-slack-webhook", | ||
"version": "8.0.0", | ||
"version": "8.1.0", | ||
"description": "Nest.js + slack-webhook", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
import { Provider } from "@nestjs/common"; | ||
import { IncomingWebhook } from "@slack/webhook"; | ||
import { getSlackClient } from "./getSlackClient"; | ||
import { SLACK_TOKEN } from "./slackConstants"; | ||
import { getSlackClient } from "./getSlackClient"; | ||
import { SlackOptions } from "./slackOptions"; | ||
@@ -6,0 +6,0 @@ |
@@ -0,3 +1,3 @@ | ||
export * from "./injectSlack"; | ||
export * from "./slackModule"; | ||
export * from "./slackOptions"; | ||
export * from "./injectSlack"; |
import { DynamicModule, Global, Module, Provider } from "@nestjs/common"; | ||
import { ClassProvider } from "@nestjs/common/interfaces"; | ||
import { IncomingWebhook } from "@slack/webhook"; | ||
import { createSlackProvider } from "./createSlackProvider"; | ||
import { getSlackClient } from "./getSlackClient"; | ||
import { SLACK_MODULE, SLACK_TOKEN } from "./slackConstants"; | ||
import { getSlackClient } from "./getSlackClient"; | ||
import { createSlackProvider } from "./createSlackProvider"; | ||
import { | ||
SlackAsyncOptions, | ||
SlackOptions, | ||
SlackAsyncOptions, | ||
SlackOptionsFactory, | ||
@@ -11,0 +11,0 @@ } from "./slackOptions"; |
import { DynamicModule, Module } from "@nestjs/common"; | ||
import { SlackCoreModule } from "./slackCoreModule"; | ||
import { SlackOptions, SlackAsyncOptions } from "./slackOptions"; | ||
import { SlackAsyncOptions, SlackOptions } from "./slackOptions"; | ||
@@ -5,0 +5,0 @@ @Module({}) |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet