@forge/manifest 7.4.0-next.2 → 7.4.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,24 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 7.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - b3d7850: Fix pipeline by adding environment field to manifest template
8
+ - a8cdbca: Added new module types for Connect on Forge
9
+
10
+ ### Patch Changes
11
+
12
+ - 7dae3d7: Fix sandbox tunnel compatibility with Node 14
13
+ - 4913321: Update manifest definitions
14
+ - 289edb1: Update manifest definitions
15
+
16
+ ## 7.4.0-next.3
17
+
18
+ ### Patch Changes
19
+
20
+ - 4913321: Update manifest definitions
21
+
3
22
  ## 7.4.0-next.2
4
23
 
5
24
  ### Patch Changes
@@ -2043,6 +2043,7 @@
2043
2043
  },
2044
2044
  "required": [
2045
2045
  "title",
2046
+ "route",
2046
2047
  "function",
2047
2048
  "key"
2048
2049
  ],
@@ -2148,6 +2149,7 @@
2148
2149
  },
2149
2150
  "required": [
2150
2151
  "title",
2152
+ "route",
2151
2153
  "resource",
2152
2154
  "key"
2153
2155
  ],
@@ -1481,7 +1481,7 @@ export interface Modules {
1481
1481
  (
1482
1482
  | {
1483
1483
  title: string;
1484
- route?: string;
1484
+ route: string;
1485
1485
  function: string;
1486
1486
  displayConditions?: {
1487
1487
  [k: string]: unknown;
@@ -1498,7 +1498,7 @@ export interface Modules {
1498
1498
  }
1499
1499
  | {
1500
1500
  title: string;
1501
- route?: string;
1501
+ route: string;
1502
1502
  resolver?:
1503
1503
  | {
1504
1504
  function: string;
@@ -1526,7 +1526,7 @@ export interface Modules {
1526
1526
  ...(
1527
1527
  | {
1528
1528
  title: string;
1529
- route?: string;
1529
+ route: string;
1530
1530
  function: string;
1531
1531
  displayConditions?: {
1532
1532
  [k: string]: unknown;
@@ -1543,7 +1543,7 @@ export interface Modules {
1543
1543
  }
1544
1544
  | {
1545
1545
  title: string;
1546
- route?: string;
1546
+ route: string;
1547
1547
  resolver?:
1548
1548
  | {
1549
1549
  function: string;
@@ -105,6 +105,7 @@
105
105
  "project-admin:connect-jira",
106
106
  "read:account",
107
107
  "read:account:brie",
108
+ "read:airtrack-object:jira",
108
109
  "read:analytics.content:confluence",
109
110
  "read:app-data:confluence",
110
111
  "read:app-data:jira",
@@ -317,6 +318,7 @@
317
318
  "validate:jql:jira",
318
319
  "view:membership:teams",
319
320
  "view:team:teams",
321
+ "write:airtrack-object:jira",
320
322
  "write:app-data:confluence",
321
323
  "write:app-data:jira",
322
324
  "write:attachment:confluence",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "7.4.0-next.2",
3
+ "version": "7.4.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {