@forge/manifest 4.8.0-next.0 → 4.8.0-next.2

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,18 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 4.8.0-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [71002871]
8
+ - @forge/util@1.2.2-next.0
9
+
10
+ ## 4.8.0-next.1
11
+
12
+ ### Patch Changes
13
+
14
+ - 4d594e7e: Update manifest definitions
15
+
3
16
  ## 4.8.0-next.0
4
17
 
5
18
  ### Minor Changes
@@ -4009,6 +4009,9 @@
4009
4009
  "minLength": 1,
4010
4010
  "maxLength": 255
4011
4011
  },
4012
+ "refreshable": {
4013
+ "type": "boolean"
4014
+ },
4012
4015
  "displayConditions": {
4013
4016
  "type": "object",
4014
4017
  "properties": {}
@@ -4121,6 +4124,9 @@
4121
4124
  "minLength": 1,
4122
4125
  "maxLength": 255
4123
4126
  },
4127
+ "refreshable": {
4128
+ "type": "boolean"
4129
+ },
4124
4130
  "displayConditions": {
4125
4131
  "type": "object",
4126
4132
  "properties": {}
@@ -2198,6 +2198,7 @@ export interface Modules {
2198
2198
  | string;
2199
2199
  description: string;
2200
2200
  thumbnail?: string;
2201
+ refreshable?: boolean;
2201
2202
  displayConditions?: {
2202
2203
  [k: string]: unknown;
2203
2204
  };
@@ -2224,6 +2225,7 @@ export interface Modules {
2224
2225
  | string;
2225
2226
  description: string;
2226
2227
  thumbnail?: string;
2228
+ refreshable?: boolean;
2227
2229
  displayConditions?: {
2228
2230
  [k: string]: unknown;
2229
2231
  };
@@ -2247,6 +2249,7 @@ export interface Modules {
2247
2249
  | string;
2248
2250
  description: string;
2249
2251
  thumbnail?: string;
2252
+ refreshable?: boolean;
2250
2253
  displayConditions?: {
2251
2254
  [k: string]: unknown;
2252
2255
  };
@@ -2273,6 +2276,7 @@ export interface Modules {
2273
2276
  | string;
2274
2277
  description: string;
2275
2278
  thumbnail?: string;
2279
+ refreshable?: boolean;
2276
2280
  displayConditions?: {
2277
2281
  [k: string]: unknown;
2278
2282
  };
@@ -186,6 +186,7 @@
186
186
  "read:media:brie",
187
187
  "read:metric:compass",
188
188
  "read:notification-scheme:jira",
189
+ "read:object:cmdb",
189
190
  "read:organization:jira-service-management",
190
191
  "read:organization.property:jira-service-management",
191
192
  "read:organization.user:jira-service-management",
@@ -223,6 +224,7 @@
223
224
  "read:resolution:jira",
224
225
  "read:restore:brie",
225
226
  "read:role:jira",
227
+ "read:schema:cmdb",
226
228
  "read:scorecard:compass",
227
229
  "read:screen-field:jira",
228
230
  "read:screen-scheme:jira",
@@ -245,6 +247,7 @@
245
247
  "read:status:jira",
246
248
  "read:task:confluence",
247
249
  "read:template:confluence",
250
+ "read:type:cmdb",
248
251
  "read:user-configuration:jira",
249
252
  "read:user:confluence",
250
253
  "read:user:jira",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "4.8.0-next.0",
3
+ "version": "4.8.0-next.2",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {
@@ -23,7 +23,7 @@
23
23
  "author": "Atlassian",
24
24
  "license": "UNLICENSED",
25
25
  "dependencies": {
26
- "@forge/util": "1.2.1",
26
+ "@forge/util": "1.2.2-next.0",
27
27
  "ajv": "^6.12.6",
28
28
  "cheerio": "^0.22.0",
29
29
  "js-yaml": "^3.13.1",