@forge/manifest 7.7.1 → 7.7.2-next.1

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,17 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 7.7.2-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 981965f: Added scope mapping for avi:jira:timetracking:provider:changed event
8
+
9
+ ## 7.7.2-next.0
10
+
11
+ ### Patch Changes
12
+
13
+ - 65bb6b7: Update manifest definitions
14
+
3
15
  ## 7.7.1
4
16
 
5
17
  ### Patch Changes
@@ -1451,6 +1451,17 @@
1451
1451
  "manage:jira-configuration"
1452
1452
  ]
1453
1453
  }
1454
+ },
1455
+ {
1456
+ "productEvent": "avi:jira:timetracking:provider:changed",
1457
+ "oAuthScopes": {
1458
+ "beta": [
1459
+ "read:issue.time-tracking:jira"
1460
+ ],
1461
+ "current": [
1462
+ "manage:jira-configuration"
1463
+ ]
1464
+ }
1454
1465
  }
1455
1466
  ]
1456
1467
  }
@@ -1454,6 +1454,12 @@
1454
1454
  "type": "string",
1455
1455
  "default": "block"
1456
1456
  },
1457
+ "bodyType": {
1458
+ "enum": [
1459
+ "rich-text"
1460
+ ],
1461
+ "type": "string"
1462
+ },
1457
1463
  "key": {
1458
1464
  "$ref": "#/definitions/ModuleKeySchema"
1459
1465
  }
@@ -1293,6 +1293,7 @@ export interface Modules {
1293
1293
  };
1294
1294
  render?: 'native' | 'default';
1295
1295
  layout?: 'inline' | 'block';
1296
+ bodyType?: 'rich-text';
1296
1297
  key: ModuleKeySchema;
1297
1298
  [k: string]: unknown;
1298
1299
  }
@@ -1370,6 +1371,7 @@ export interface Modules {
1370
1371
  };
1371
1372
  render?: 'native' | 'default';
1372
1373
  layout?: 'inline' | 'block';
1374
+ bodyType?: 'rich-text';
1373
1375
  key: ModuleKeySchema;
1374
1376
  [k: string]: unknown;
1375
1377
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "7.7.1",
3
+ "version": "7.7.2-next.1",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {