Skip to content

Commit bb144f7

Browse files
committed
v3.4.11
1 parent a8f154d commit bb144f7

File tree

5 files changed

+12
-3
lines changed

5 files changed

+12
-3
lines changed

build/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ declare module "bugbattle" {
22
export namespace BugBattle {
33
const NONE: "NONE";
44
const FEEDBACK_BUTTON: "FEEDBACK_BUTTON";
5+
const PRIORITY_LOW: "LOW";
6+
const PRIORITY_MEDIUM: "MEDIUM";
7+
const PRIORITY_HIGH: "HIGH";
8+
59
function initialize(
610
key: string,
711
activationMethod: "NONE" | "FEEDBACK_BUTTON"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bugbattle",
3-
"version": "3.4.10",
3+
"version": "3.4.11",
44
"main": "build/index.js",
55
"types": "index.d.ts",
66
"scripts": {

published/latest/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/BugBattle.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ class BugBattle {
4848
static FEEDBACK_BUTTON = "FEEDBACK_BUTTON";
4949
static NONE = "NONE";
5050

51+
// Bug priorities
52+
static PRIORITY_LOW = "LOW";
53+
static PRIORITY_MEDIUM = "MEDIUM";
54+
static PRIORITY_HIGH = "HIGH";
55+
5156
// Bugbattle singleton instance
5257
static instance;
5358

0 commit comments

Comments
 (0)