@forge/bridge 5.7.0-next.11 → 5.7.0-next.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/out/realtime/index.d.ts +1 -1
- package/out/realtime/index.d.ts.map +1 -1
- package/out/realtime/index.js +3 -1
- package/out/realtime/productContext.d.ts +9 -1
- package/out/realtime/productContext.d.ts.map +1 -1
- package/out/realtime/productContext.js +11 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/out/realtime/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/realtime/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,mBAAmB,EAAE,KAAK,cAAc,EAAE,KAAK,aAAa,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACzG,OAAO,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/realtime/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,mBAAmB,EAAE,KAAK,cAAc,EAAE,KAAK,aAAa,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACzG,OAAO,EAAE,IAAI,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC"}
|
package/out/realtime/index.js
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Jira = exports.realtime = void 0;
|
|
3
|
+
exports.Bitbucket = exports.Confluence = exports.Jira = exports.realtime = void 0;
|
|
4
4
|
var realtime_1 = require("./realtime");
|
|
5
5
|
Object.defineProperty(exports, "realtime", { enumerable: true, get: function () { return realtime_1.realtime; } });
|
|
6
6
|
var productContext_1 = require("./productContext");
|
|
7
7
|
Object.defineProperty(exports, "Jira", { enumerable: true, get: function () { return productContext_1.Jira; } });
|
|
8
|
+
Object.defineProperty(exports, "Confluence", { enumerable: true, get: function () { return productContext_1.Confluence; } });
|
|
9
|
+
Object.defineProperty(exports, "Bitbucket", { enumerable: true, get: function () { return productContext_1.Bitbucket; } });
|
|
@@ -3,5 +3,13 @@ export declare enum Jira {
|
|
|
3
3
|
Issue = "issue",
|
|
4
4
|
Project = "project"
|
|
5
5
|
}
|
|
6
|
-
export declare
|
|
6
|
+
export declare enum Confluence {
|
|
7
|
+
Content = "content",
|
|
8
|
+
Space = "space"
|
|
9
|
+
}
|
|
10
|
+
export declare enum Bitbucket {
|
|
11
|
+
Repository = "repository",
|
|
12
|
+
PullRequest = "pullRequest"
|
|
13
|
+
}
|
|
14
|
+
export declare type ProductContext = Jira | Confluence | Bitbucket;
|
|
7
15
|
//# sourceMappingURL=productContext.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"productContext.d.ts","sourceRoot":"","sources":["../../src/realtime/productContext.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"productContext.d.ts","sourceRoot":"","sources":["../../src/realtime/productContext.ts"],"names":[],"mappings":"AAGA,oBAAY,IAAI;IACd,KAAK,UAAU;IACf,KAAK,UAAU;IACf,OAAO,YAAY;CACpB;AAED,oBAAY,UAAU;IACpB,OAAO,YAAY;IACnB,KAAK,UAAU;CAChB;AAED,oBAAY,SAAS;IACnB,UAAU,eAAe;IACzB,WAAW,gBAAgB;CAC5B;AAED,oBAAY,cAAc,GAAG,IAAI,GAAG,UAAU,GAAG,SAAS,CAAC"}
|
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Jira = void 0;
|
|
3
|
+
exports.Bitbucket = exports.Confluence = exports.Jira = void 0;
|
|
4
4
|
var Jira;
|
|
5
5
|
(function (Jira) {
|
|
6
6
|
Jira["Board"] = "board";
|
|
7
7
|
Jira["Issue"] = "issue";
|
|
8
8
|
Jira["Project"] = "project";
|
|
9
9
|
})(Jira = exports.Jira || (exports.Jira = {}));
|
|
10
|
+
var Confluence;
|
|
11
|
+
(function (Confluence) {
|
|
12
|
+
Confluence["Content"] = "content";
|
|
13
|
+
Confluence["Space"] = "space";
|
|
14
|
+
})(Confluence = exports.Confluence || (exports.Confluence = {}));
|
|
15
|
+
var Bitbucket;
|
|
16
|
+
(function (Bitbucket) {
|
|
17
|
+
Bitbucket["Repository"] = "repository";
|
|
18
|
+
Bitbucket["PullRequest"] = "pullRequest";
|
|
19
|
+
})(Bitbucket = exports.Bitbucket || (exports.Bitbucket = {}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/bridge",
|
|
3
|
-
"version": "5.7.0-next.
|
|
3
|
+
"version": "5.7.0-next.12",
|
|
4
4
|
"description": "Forge bridge API for custom UI apps",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@forge/resolver": "1.7.1-next.0",
|
|
19
19
|
"@statsig/js-client": "3.18.2",
|
|
20
20
|
"@types/history": "^4.7.11",
|
|
21
|
-
"@forge/manifest": "10.8.0-next.
|
|
21
|
+
"@forge/manifest": "10.8.0-next.6"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"history": "5.3.0",
|