@forge/manifest 7.4.0-next.0 → 7.4.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,17 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 7.4.0-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7dae3d7: Fix sandbox tunnel compatibility with Node 14
|
|
8
|
+
|
|
9
|
+
## 7.4.0-next.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 289edb1: Update manifest definitions
|
|
14
|
+
|
|
3
15
|
## 7.4.0-next.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -14569,6 +14569,29 @@
|
|
|
14569
14569
|
},
|
|
14570
14570
|
"minItems": 1
|
|
14571
14571
|
},
|
|
14572
|
+
"connect-jira:cloudAppMigration": {
|
|
14573
|
+
"type": "array",
|
|
14574
|
+
"items": {
|
|
14575
|
+
"properties": {
|
|
14576
|
+
"migrationWebhookPath": {
|
|
14577
|
+
"type": "string",
|
|
14578
|
+
"fieldDescription": "\n\nRelative URL path where <a href=\"https://developer.atlassian.com/platform/app-migration/events\">App Migration Webhook events</a> will be sent to.\nThis feature is currently in EAP for Connect on Forge.\n\n"
|
|
14579
|
+
},
|
|
14580
|
+
"key": {
|
|
14581
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
14582
|
+
}
|
|
14583
|
+
},
|
|
14584
|
+
"required": [
|
|
14585
|
+
"key"
|
|
14586
|
+
],
|
|
14587
|
+
"not": {
|
|
14588
|
+
"required": [
|
|
14589
|
+
"unlicensedAccess"
|
|
14590
|
+
]
|
|
14591
|
+
}
|
|
14592
|
+
},
|
|
14593
|
+
"minItems": 1
|
|
14594
|
+
},
|
|
14572
14595
|
"connect-confluence:keyboardShortcuts": {
|
|
14573
14596
|
"type": "array",
|
|
14574
14597
|
"items": {
|
|
@@ -17194,6 +17217,29 @@
|
|
|
17194
17217
|
},
|
|
17195
17218
|
"minItems": 1
|
|
17196
17219
|
},
|
|
17220
|
+
"connect-confluence:cloudAppMigration": {
|
|
17221
|
+
"type": "array",
|
|
17222
|
+
"items": {
|
|
17223
|
+
"properties": {
|
|
17224
|
+
"migrationWebhookPath": {
|
|
17225
|
+
"type": "string",
|
|
17226
|
+
"fieldDescription": "\n\nRelative URL path where <a href=\"https://developer.atlassian.com/platform/app-migration/events\">App Migration Webhook events</a> will be sent to.\nThis feature is currently in EAP for Connect on Forge.\n\n"
|
|
17227
|
+
},
|
|
17228
|
+
"key": {
|
|
17229
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
17230
|
+
}
|
|
17231
|
+
},
|
|
17232
|
+
"required": [
|
|
17233
|
+
"key"
|
|
17234
|
+
],
|
|
17235
|
+
"not": {
|
|
17236
|
+
"required": [
|
|
17237
|
+
"unlicensedAccess"
|
|
17238
|
+
]
|
|
17239
|
+
}
|
|
17240
|
+
},
|
|
17241
|
+
"minItems": 1
|
|
17242
|
+
},
|
|
17197
17243
|
"automation:action": {
|
|
17198
17244
|
"type": "array",
|
|
17199
17245
|
"items": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -7099,6 +7099,18 @@ export interface Modules {
|
|
|
7099
7099
|
[k: string]: unknown;
|
|
7100
7100
|
}[]
|
|
7101
7101
|
];
|
|
7102
|
+
'connect-jira:cloudAppMigration'?: [
|
|
7103
|
+
{
|
|
7104
|
+
migrationWebhookPath?: string;
|
|
7105
|
+
key: ModuleKeySchema;
|
|
7106
|
+
[k: string]: unknown;
|
|
7107
|
+
},
|
|
7108
|
+
...{
|
|
7109
|
+
migrationWebhookPath?: string;
|
|
7110
|
+
key: ModuleKeySchema;
|
|
7111
|
+
[k: string]: unknown;
|
|
7112
|
+
}[]
|
|
7113
|
+
];
|
|
7102
7114
|
'connect-confluence:keyboardShortcuts'?: [
|
|
7103
7115
|
{
|
|
7104
7116
|
shortcut: string;
|
|
@@ -7773,6 +7785,18 @@ export interface Modules {
|
|
|
7773
7785
|
[k: string]: unknown;
|
|
7774
7786
|
}[]
|
|
7775
7787
|
];
|
|
7788
|
+
'connect-confluence:cloudAppMigration'?: [
|
|
7789
|
+
{
|
|
7790
|
+
migrationWebhookPath?: string;
|
|
7791
|
+
key: ModuleKeySchema;
|
|
7792
|
+
[k: string]: unknown;
|
|
7793
|
+
},
|
|
7794
|
+
...{
|
|
7795
|
+
migrationWebhookPath?: string;
|
|
7796
|
+
key: ModuleKeySchema;
|
|
7797
|
+
[k: string]: unknown;
|
|
7798
|
+
}[]
|
|
7799
|
+
];
|
|
7776
7800
|
'automation:action'?: [
|
|
7777
7801
|
{
|
|
7778
7802
|
function: string;
|
|
@@ -182,6 +182,7 @@
|
|
|
182
182
|
"read:filter.default-share-scope:jira",
|
|
183
183
|
"read:group:confluence",
|
|
184
184
|
"read:group:jira",
|
|
185
|
+
"read:incident:jira-service-management",
|
|
185
186
|
"read:inlinetask:confluence",
|
|
186
187
|
"read:instance-configuration:jira",
|
|
187
188
|
"read:issue-adjustments:jira",
|
|
@@ -379,6 +380,7 @@
|
|
|
379
380
|
"write:filter.default-share-scope:jira",
|
|
380
381
|
"write:group:confluence",
|
|
381
382
|
"write:group:jira",
|
|
383
|
+
"write:incident:jira-service-management",
|
|
382
384
|
"write:inlinetask:confluence",
|
|
383
385
|
"write:instance-configuration:jira",
|
|
384
386
|
"write:issue-adjustments:jira",
|
|
@@ -35,7 +35,7 @@ class ManifestParser {
|
|
|
35
35
|
if (!(typeof value == 'string')) {
|
|
36
36
|
return value;
|
|
37
37
|
}
|
|
38
|
-
value = value.
|
|
38
|
+
value = value.replace(POSSIBLE_ENVIRONMENT_VARIABLE, (original, envVarName) => {
|
|
39
39
|
if (!this.envVarsToReplace.includes(envVarName)) {
|
|
40
40
|
return original;
|
|
41
41
|
}
|