@atomist/slack-messages
Advanced tools
Comparing version 0.3.0 to 0.3.1
@@ -129,8 +129,2 @@ "use strict"; | ||
exports.listItem = listItem; | ||
var ButtonSpec = (function () { | ||
function ButtonSpec() { | ||
} | ||
return ButtonSpec; | ||
}()); | ||
exports.ButtonSpec = ButtonSpec; | ||
/** Construct Slack button that will execute provided rug instruction. */ | ||
@@ -137,0 +131,0 @@ function rugButtonFrom(action, command) { |
@@ -10,4 +10,11 @@ # Change Log | ||
[Unreleased]: https://github.com/atomist/slack-messages/compare/0.3.0...HEAD | ||
[Unreleased]: https://github.com/atomist/slack-messages/compare/0.3.1...HEAD | ||
## [0.3.1] - 2017-05-10 | ||
[0.3.1]: https://github.com/atomist/slack-messages/compare/0.3.0...0.3.1 | ||
### Fixed | ||
- **BREAKING** `ButtonSpec` should be an interface | ||
## [0.3.0] - 2017-05-10 | ||
@@ -14,0 +21,0 @@ |
{ | ||
"name": "@atomist/slack-messages", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"author": "Atomist, Inc", | ||
@@ -5,0 +5,0 @@ "directories": { |
@@ -185,6 +185,6 @@ import { Presentable } from "@atomist/rug/operations/Handlers"; | ||
export class ButtonSpec { | ||
public text: string; | ||
public style?: string; | ||
public confirm?: ActionConfirmation; | ||
export interface ButtonSpec { | ||
text: string; | ||
style?: string; | ||
confirm?: ActionConfirmation; | ||
} | ||
@@ -191,0 +191,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
97255
787