@forge/bridge 5.12.0-next.9 → 5.12.1-next.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 CHANGED
@@ -1,5 +1,36 @@
1
1
  # @forge/bridge
2
2
 
3
+ ## 5.12.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [561036a]
8
+ - Updated dependencies [b248c8f]
9
+ - @forge/manifest@12.1.1-next.0
10
+
11
+ ## 5.12.0
12
+
13
+ ### Minor Changes
14
+
15
+ - 1cb117e: Add rovo.isEnabled bridge method to check if Rovo has been enabled for the running tenant
16
+
17
+ ### Patch Changes
18
+
19
+ - 91648e9: Pass isEditing from parent macro context for createAdfRendererIframeProps
20
+ - Updated dependencies [6204a94]
21
+ - Updated dependencies [e4c143c]
22
+ - Updated dependencies [42e069d]
23
+ - Updated dependencies [19807bf]
24
+ - Updated dependencies [e98e35c]
25
+ - Updated dependencies [5de91aa]
26
+ - Updated dependencies [6247657]
27
+ - Updated dependencies [434fb15]
28
+ - Updated dependencies [d4bbee9]
29
+ - Updated dependencies [8246b16]
30
+ - Updated dependencies [fa9b5aa]
31
+ - Updated dependencies [63d29ca]
32
+ - @forge/manifest@12.1.0
33
+
3
34
  ## 5.12.0-next.9
4
35
 
5
36
  ### Minor Changes
@@ -0,0 +1,2 @@
1
+ export declare const isEnabled: () => Promise<boolean>;
2
+ //# sourceMappingURL=isEnabled.d.ts.map
@@ -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;
@@ -1,4 +1,5 @@
1
1
  export declare const rovo: {
2
2
  open: (openRovoPayload: import("./types").OpenRovoPayload) => Promise<void>;
3
+ isEnabled: () => Promise<boolean>;
3
4
  };
4
5
  //# sourceMappingURL=rovo.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"rovo.d.ts","sourceRoot":"","sources":["../../src/rovo/rovo.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,IAAI;;CAEhB,CAAC"}
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-next.9",
3
+ "version": "5.12.1-next.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-next.8",
23
+ "@forge/manifest": "12.1.1-next.0",
24
24
  "@types/iframe-resizer": "^3.5.8",
25
25
  "iframe-resizer": "^4.4.5",
26
26
  "uuid": "^9.0.1"