@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
|
}
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -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
|
}
|