@owlworks/hoot-api
Advanced tools
Comparing version 0.0.5 to 0.0.6
@@ -8,2 +8,11 @@ import { Activity } from "botframework-schema"; | ||
} | ||
export declare enum ChannelStatus { | ||
CREATED = "created", | ||
CREATING = "creating", | ||
CREATION_FAILED = "creation_failed", | ||
DELETED = "deleted", | ||
DELETING = "deleting", | ||
DELETION_FAILED = "deletion_failed", | ||
QUEUED = "queued" | ||
} | ||
export interface IAccountWebhook { | ||
@@ -58,2 +67,3 @@ accountWebhookId: string; | ||
channelId: string; | ||
channelStatus: ChannelStatus; | ||
channelType: ChannelType; | ||
@@ -60,0 +70,0 @@ configuration: Configuration; |
@@ -6,3 +6,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.HootClient = exports.ChannelType = void 0; | ||
exports.HootClient = exports.ChannelStatus = exports.ChannelType = void 0; | ||
const axios_1 = __importDefault(require("axios")); | ||
@@ -16,2 +16,12 @@ var ChannelType; | ||
})(ChannelType = exports.ChannelType || (exports.ChannelType = {})); | ||
var ChannelStatus; | ||
(function (ChannelStatus) { | ||
ChannelStatus["CREATED"] = "created"; | ||
ChannelStatus["CREATING"] = "creating"; | ||
ChannelStatus["CREATION_FAILED"] = "creation_failed"; | ||
ChannelStatus["DELETED"] = "deleted"; | ||
ChannelStatus["DELETING"] = "deleting"; | ||
ChannelStatus["DELETION_FAILED"] = "deletion_failed"; | ||
ChannelStatus["QUEUED"] = "queued"; | ||
})(ChannelStatus = exports.ChannelStatus || (exports.ChannelStatus = {})); | ||
class HootClient { | ||
@@ -18,0 +28,0 @@ constructor(options) { |
@@ -45,3 +45,3 @@ { | ||
"types": "dist/index.d.ts", | ||
"version": "0.0.5" | ||
"version": "0.0.6" | ||
} |
13553
297