@forge/bridge 5.12.0-next.9 → 5.12.0
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 +23 -0
- package/out/rovo/isEnabled.d.ts +2 -0
- package/out/rovo/isEnabled.d.ts.map +1 -0
- package/out/rovo/isEnabled.js +9 -0
- package/out/rovo/rovo.d.ts +1 -0
- package/out/rovo/rovo.d.ts.map +1 -1
- package/out/rovo/rovo.js +3 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @forge/bridge
|
|
2
2
|
|
|
3
|
+
## 5.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1cb117e: Add rovo.isEnabled bridge method to check if Rovo has been enabled for the running tenant
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 91648e9: Pass isEditing from parent macro context for createAdfRendererIframeProps
|
|
12
|
+
- Updated dependencies [6204a94]
|
|
13
|
+
- Updated dependencies [e4c143c]
|
|
14
|
+
- Updated dependencies [42e069d]
|
|
15
|
+
- Updated dependencies [19807bf]
|
|
16
|
+
- Updated dependencies [e98e35c]
|
|
17
|
+
- Updated dependencies [5de91aa]
|
|
18
|
+
- Updated dependencies [6247657]
|
|
19
|
+
- Updated dependencies [434fb15]
|
|
20
|
+
- Updated dependencies [d4bbee9]
|
|
21
|
+
- Updated dependencies [8246b16]
|
|
22
|
+
- Updated dependencies [fa9b5aa]
|
|
23
|
+
- Updated dependencies [63d29ca]
|
|
24
|
+
- @forge/manifest@12.1.0
|
|
25
|
+
|
|
3
26
|
## 5.12.0-next.9
|
|
4
27
|
|
|
5
28
|
### Minor Changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isEnabled.d.ts","sourceRoot":"","sources":["../../src/rovo/isEnabled.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,SAAS,wBAErB,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.isEnabled = void 0;
|
|
4
|
+
const bridge_1 = require("../bridge");
|
|
5
|
+
const callBridge = (0, bridge_1.getCallBridge)();
|
|
6
|
+
const isEnabled = () => {
|
|
7
|
+
return callBridge('isRovoEnabled');
|
|
8
|
+
};
|
|
9
|
+
exports.isEnabled = isEnabled;
|
package/out/rovo/rovo.d.ts
CHANGED
package/out/rovo/rovo.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rovo.d.ts","sourceRoot":"","sources":["../../src/rovo/rovo.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"rovo.d.ts","sourceRoot":"","sources":["../../src/rovo/rovo.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,IAAI;;;CAGhB,CAAC"}
|
package/out/rovo/rovo.js
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.rovo = void 0;
|
|
4
4
|
const open_1 = require("./open");
|
|
5
|
+
const isEnabled_1 = require("./isEnabled");
|
|
5
6
|
exports.rovo = {
|
|
6
|
-
open: open_1.open
|
|
7
|
+
open: open_1.open,
|
|
8
|
+
isEnabled: isEnabled_1.isEnabled
|
|
7
9
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/bridge",
|
|
3
|
-
"version": "5.12.0
|
|
3
|
+
"version": "5.12.0",
|
|
4
4
|
"description": "Forge bridge API for custom UI apps",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@forge/resolver": "1.7.1",
|
|
21
21
|
"@statsig/js-client": "3.18.2",
|
|
22
22
|
"@types/history": "^4.7.11",
|
|
23
|
-
"@forge/manifest": "12.1.0
|
|
23
|
+
"@forge/manifest": "12.1.0",
|
|
24
24
|
"@types/iframe-resizer": "^3.5.8",
|
|
25
25
|
"iframe-resizer": "^4.4.5",
|
|
26
26
|
"uuid": "^9.0.1"
|